|
@@ -39,8 +39,8 @@ class User Extends Model
|
|
|
* 微信授权登录、注册
|
|
|
*/
|
|
|
public static function wechatLogin($code,$rawData){
|
|
|
- $appid = Config::get_values('wechat_appid');
|
|
|
- $secret = Config::get_values('wechat_appsecret');
|
|
|
+ $appid = Config::get_values('small_wechat_id');
|
|
|
+ $secret = Config::get_values('small_wechat_secret');
|
|
|
$url = "https://api.weixin.qq.com/sns/jscode2session?appid=" . $appid . "&secret=" . $secret . "&js_code=" . $code . "&grant_type=authorization_code";
|
|
|
$session_key = Common::curlRequest($url);
|
|
|
|