You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.9 KiB
51 lines
1.9 KiB
11 months ago
|
<?php
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | 萤火商城系统 [ 致力于通过产品和服务,帮助商家高效化开拓市场 ]
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Copyright (c) 2017~2023 https://www.yiovo.com All rights reserved.
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Licensed 这不是一个自由软件,不允许对程序代码以任何形式任何目的的再发行
|
||
|
// +----------------------------------------------------------------------
|
||
|
// | Author: 萤火科技 <admin@yiovo.com>
|
||
|
// +----------------------------------------------------------------------
|
||
|
declare (strict_types=1);
|
||
|
|
||
|
namespace app\common\library\wechat;
|
||
|
|
||
|
use app\common\library\helper;
|
||
|
use cores\exception\BaseException;
|
||
|
|
||
|
/**
|
||
|
* 微信小程序用户管理类
|
||
|
* Class WxUser
|
||
|
* @package app\common\library\wechat
|
||
|
*/
|
||
|
class WxUser extends WxBase
|
||
|
{
|
||
|
/**
|
||
|
* 获取session_key
|
||
|
* @param string $code
|
||
|
* @return array|false
|
||
|
* @throws BaseException
|
||
|
*/
|
||
|
public function jscode2session(string $code)
|
||
|
{
|
||
|
/**
|
||
|
* code 换取 session_key
|
||
|
* 这是一个 HTTPS 接口,开发者服务器使用登录凭证 code 获取 session_key 和 openid。
|
||
|
* 其中 session_key 是对用户数据进行加密签名的密钥。为了自身应用安全,session_key 不应该在网络上传输。
|
||
|
*/
|
||
|
$url = 'https://api.weixin.qq.com/sns/jscode2session';
|
||
|
$result = helper::jsonDecode($this->get($url, [
|
||
|
'appid' => $this->appId,
|
||
|
'secret' => $this->appSecret,
|
||
|
'grant_type' => 'authorization_code',
|
||
|
'js_code' => $code
|
||
|
]));
|
||
|
if (isset($result['errcode'])) {
|
||
|
$this->error = $result['errmsg'];
|
||
|
return false;
|
||
|
}
|
||
|
return $result;
|
||
|
}
|
||
|
}
|