服务端

我们在企业微信应用开启接收消息的功能,将设置页面的 token 与 aes key 配置到 agents 下对应的应用内:

  1. $config = [
  2. 'corp_id' => 'xxxxxxxxxxxxxxxxx',
  3. 'agent_id' => 100022,
  4. 'secret' => 'xxxxxxxxxx',
  5. // server config
  6. 'token' => 'xxxxxxxxx',
  7. 'aes_key' => 'xxxxxxxxxxxxxxxxxx',
  8. //...
  9. ];
  10. $app = Factory::work($config);

接着配置服务端与公众号的服务端用法一样:

  1. $app->server->push(function(){
  2. return 'Hello easywechat.';
  3. });
  4. $response = $app->server->serve();
  5. $response->send();

$responseSymfony\Component\HttpFoundation\Response 实例,根据你的框架情况来决定如何处理响应。