企业微信

企业微信的使用与公众号以及其它几个应用的使用方式都是一致的,使用 \EasyWeChat\Factory::work($config) 来初始化:

  1. $config = [
  2. 'corp_id' => 'xxxxxxxxxxxxxxxxx',
  3. 'agent_id' => 100020, // 如果有 agend_id 则填写
  4. 'secret' => 'xxxxxxxxxx',
  5. // 指定 API 调用返回结果的类型:array(default)/collection/object/raw/自定义类名
  6. 'response_type' => 'array',
  7. 'log' => [
  8. 'level' => 'debug',
  9. 'file' => __DIR__.'/wechat.log',
  10. ],
  11. ];
  12. $app = Factory::work($config);

然后你就可以用 $app 来调用企业微信的服务了。