服务端
我们在企业微信应用开启接收消息的功能,将设置页面的 token 与 aes key 配置到 agents 下对应的应用内:
$config = [
'corp_id' => 'xxxxxxxxxxxxxxxxx',
'agent_id' => 100022,
'secret' => 'xxxxxxxxxx',
// server config
'token' => 'xxxxxxxxx',
'aes_key' => 'xxxxxxxxxxxxxxxxxx',
//...
];
$app = Factory::work($config);
接着配置服务端与公众号的服务端用法一样:
$app->server->push(function(){
return 'Hello easywechat.';
});
$response = $app->server->serve();
$response->send();
$response
为 Symfony\Component\HttpFoundation\Response
实例,根据你的框架情况来决定如何处理响应。
当前内容版权归 EasyWeChat 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 EasyWeChat .