| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- namespace app\common\service\wechat;
- use EasyWeChat\Kernel\Exceptions\Exception;
- use EasyWeChat\MiniApp\Application;
- /**
- * 微信功能类
- * Class WeChatMnpService
- * @package app\common\service
- */
- class WorkerWeChatMnpService
- {
- protected $app;
- protected $config;
- public function __construct()
- {
- $this->config = $this->getConfig();
- $this->app = new Application($this->config);
- }
- /**
- * @notes 配置
- * @return array
- * @throws \Exception
- * @author 段誉
- * @date 2023/2/27 12:03
- */
- protected function getConfig()
- {
- $config = WorkerWeChatConfigService::getMnpConfig();
- if (empty($config['app_id']) || empty($config['secret'])) {
- throw new \Exception('请先设置小程序配置');
- }
- return $config;
- }
- /**
- * @notes 小程序-根据code获取微信信息
- * @param string $code
- * @return array
- * @throws Exception
- * @throws \EasyWeChat\Kernel\Exceptions\HttpException
- * @throws \EasyWeChat\Kernel\Exceptions\InvalidArgumentException
- * @throws \Symfony\Contracts\HttpClient\Exception\ClientExceptionInterface
- * @throws \Symfony\Contracts\HttpClient\Exception\DecodingExceptionInterface
- * @throws \Symfony\Contracts\HttpClient\Exception\RedirectionExceptionInterface
- * @throws \Symfony\Contracts\HttpClient\Exception\ServerExceptionInterface
- * @throws \Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface
- * @author 段誉
- * @date 2023/2/27 11:03
- */
- public function getMnpResByCode(string $code)
- {
- $utils = $this->app->getUtils();
- $response = $utils->codeToSession($code);
- if (!isset($response['openid']) || empty($response['openid'])) {
- throw new Exception('获取openID失败');
- }
- return $response;
- }
- /**
- * @notes 获取手机号
- * @param string $code
- * @return \EasyWeChat\Kernel\HttpClient\Response|\Symfony\Contracts\HttpClient\ResponseInterface
- * @throws \Symfony\Contracts\HttpClient\Exception\TransportExceptionInterface
- * @author 段誉
- * @date 2023/2/27 11:46
- */
- public function getUserPhoneNumber(string $code)
- {
- return $this->app->getClient()->postJson('wxa/business/getuserphonenumber', [
- 'code' => $code,
- ]);
- }
- public function getUnlimitedQRCode($scene,$page,$env_version='release',$check_path=true)
- {
- return $this->app->getClient()->postJson('wxa/getwxacodeunlimit', [
- 'scene' => $scene,
- 'page'=>$page,
- 'env_version'=>$env_version,//trial小程序版本
- 'check_path'=>$check_path
- ]);
- }
- }
|