企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
# 校验交互凭证 plg_cmd_verify_session_token ### 请求参数 | user_id | 用户id | | --- | --- | | platform | 平台编号 | | member_id | 成员id | | token | 登陆token | ``` $cmd = FresnsPluginConfig::PLG_CMD_VERIFY_SESSION_TOKEN; $input['user_id'] = $user_id; $input['platform'] = $platform; $input['member_id'] = $member_id; $input['token'] = $token; $resp = PluginRpcHelper::call(FresnsPlugin::class, $cmd, $input); if(PluginRpcHelper::isErrorPluginResp($resp)){ $this->errorCheckInfo($resp); } ```