企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
>[info] 引用wechat-php-sdk类库,获取微信操作对象。 所在位置:Application/Home/Common/function.php ~~~ function getWechatApiObj(){ $mpInfo = get_token_appinfo(); $options = array( 'token'=>$mpInfo['mp_token'], //填写你设定的key 'encodingaeskey'=>$mpInfo['encodingaeskey'], //填写加密用的EncodingAESKey 'appid'=>$mpInfo['appid'], //填写高级调用功能的app id 'appsecret'=>$mpInfo['secret'] //填写高级调用功能的密钥 ); $weObj = new TPWechat($options); $weObj->getRev(); return $weObj; } ~~~