1. 程式人生 > >記一次php獲取微信使用者

記一次php獲取微信使用者

前面的步驟都可以按照官方文件的來,我的問題出在了獲取access_token..

 

我一直在糾結如何取到這個access_token,用ajax一直都取不到,可能是微信為了安全。

後來運用了這個就取到了

  $weixin=file_get_contents("https://api.weixin.qq.com/sns/oauth2/access_token?appid=xxxxxxxxx&secret=xxxxxxxxx&code=".$code."&grant_type=authorization_code");
        $jsondecode=json_decode($weixin);
        $array=get_object_vars($jsondecode);
        $access_token=$array['access_token'];
        $openid=$array['openid'];