|
@@ -173,38 +173,22 @@ class Common extends Api
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
- * code
|
|
|
+ * 获取openid
|
|
|
*/
|
|
|
- public function getOpenid($code = ''){
|
|
|
+ function getOpenid($code_ = ''){
|
|
|
+ $code = $code_;
|
|
|
$appid = 'wx5e111b790c719cae';
|
|
|
- $secret = 'xxxxxxxxxxxxxxxxxxxxxxxxxxxx';
|
|
|
- $url = "https://api.weixin.qq.com/sns/jscode2session?appid="
|
|
|
- . $appid . "&secret="
|
|
|
- . $secret . "&js_code="
|
|
|
- . $code . "&grant_type=authorization_code";
|
|
|
- $wxuserinfo = file_get_contents($url, true);
|
|
|
- $openid = json_decode($wxuserinfo, true)['openid'];
|
|
|
- echo $openid;
|
|
|
- }
|
|
|
- /**
|
|
|
- * @Title ("小程序根据code获取openid")
|
|
|
- * @Method ("post")
|
|
|
- * @Param("code",desc="code")
|
|
|
- */
|
|
|
- public function getOpenid2(){
|
|
|
- $data=$this->_vali([
|
|
|
- 'code.require'=>'code必须',
|
|
|
- ],'post');
|
|
|
- $code = $data['code'];
|
|
|
- $appid = 'wxa5033cf91977e574';
|
|
|
- $secret = '2a36bfbced93a2c4256e7b6b15922990';
|
|
|
- $url = "https://api.weixin.qq.com/sns/jscode2session?appid=" . $appid . "&secret=" . $secret . "&js_code=" . $code . "&grant_type=authorization_code";
|
|
|
- $session_key = curlRequest($url);
|
|
|
- if (!empty($session_key['session_key'])) {
|
|
|
- $re['openid'] = $session_key['openid'];
|
|
|
- $this->success('成功',$re);
|
|
|
- }else{
|
|
|
- $this->error('获取session_key失败!');
|
|
|
- }
|
|
|
+ $secret = 'a4e2a6d2a4fd06bd9e4ba279fd95e2d8';
|
|
|
+ $get_token_url = 'https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$secret.'&code='.$code.'&grant_type=authorization_code';
|
|
|
+ $ch = curl_init();
|
|
|
+ curl_setopt($ch,CURLOPT_URL,$get_token_url);
|
|
|
+ curl_setopt($ch,CURLOPT_HEADER,0);
|
|
|
+ curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1 );
|
|
|
+ curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 10);
|
|
|
+ $res = curl_exec($ch);
|
|
|
+ curl_close($ch);
|
|
|
+ $json_obj = json_decode($res,true);
|
|
|
+ if($json_obj['openid'])return $json_obj['openid'];
|
|
|
+ $this->error('0',$json_obj);
|
|
|
}
|
|
|
}
|