WechatService.php 480 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace App\Services;
  3. use EasyWeChat\Factory;
  4. class WechatService
  5. {
  6. public function __construct()
  7. {
  8. $config = [
  9. 'app_id' => config('customer.wechat_id'),
  10. 'secret' => config('customer.wechat_id'),
  11. ];
  12. $this->app = Factory::officialAccount($config);
  13. }
  14. public function share()
  15. {
  16. return $this->app->jssdk->buildConfig(['updateAppMessageShareData', 'updateTimelineShareData'], true);
  17. }
  18. }