zl程序教程

您现在的位置是:首页 >  其他

当前栏目

基于PHP方法,微信公众号小程序获取code,access_token,openid,用户信息

2023-04-18 14:53:11 时间

//发起获得code值链接 public function doPageGetcode() { appid=′yourappid′;//修改你的appidif(!appid = 'yourappid';//修改你的appid if (!appid=′yourappid′;//修改你的appidif(!appid) { return this->result(10008, '参数错误', ''); } //这里的redirect_uri地址需要http://,跳转对于登录doPageOpenid方法,在微信公众号上面也有添加这个域名wx.owen.com/ redirect_uri=urlencode("[http://wx.owen.com/doPageOpenid](http://wx.owen.com/doPageOpenid)");redirect\_uri = urlencode("[http://wx.owen.com/doPageOpenid](http://wx.owen.com/doPageOpenid)"); redirect_uri=urlencode("[http://wx.owen.com/doPageOpenid](http://wx.owen.com/doPageOpenid)");url = "open.weixin.qq.com/connect/oau…" . appid . "&redirect\_uri=" . redirect_uri . "&response_type=code&scope=snsapi_userinfo&state=123#wechat_redirect"; header('location:' . $url); }

  public function httpRequest($url, $data = null)
  {
     $curl = curl_init();
     curl\_setopt($curl, CURLOPT\_URL, $url);
     curl\_setopt($curl, CURLOPT\_SSL_VERIFYPEER, FALSE);
     curl\_setopt($curl, CURLOPT\_SSL_VERIFYHOST, FALSE);
     if (!empty($data)) {
        curl\_setopt($curl, CURLOPT\_POST, 1);
        curl\_setopt($curl, CURLOPT\_POSTFIELDS, $data);
     }
     curl\_setopt($curl, CURLOPT\_RETURNTRANSFER, 1);
     $output = curl_exec($curl);
     curl_close($curl);
     return $output;
  }
  
  //获取用户信息和注册
  public function doPageOpenid()
  {
     $appid = "yourappid";//修改你的appid
     $secret = "yourappsecret";//修改你的appsecret
     $code = $_GPC["code"];
     
     //小程序
复制代码
// url="[https://api.weixin.qq
     $res = $this->httpRequest($url);
     $jsoninfo = json_decode($res, true);
     $access\_token = $jsoninfo["access\_token"];
     $openid = $jsoninfo["openid"];
复制代码
// // 获得所有关注用户的Openid // url="[https://api.weixin.qq.com/cgi−bin/user/get?access_token=](https://api.weixin.qq.com/cgi−bin/user/get?accesstoken=)".url = "[https://api.weixin.qq.com/cgi-bin/user/get?access\_token=](https://api.weixin.qq.com/cgi-bin/user/get?access_token=)" . url="[https://api.weixin.qq.com/cgi−bin/user/get?access_token=](https://api.weixin.qq.com/cgi−bin/user/get?accesst​oken=)".access_token; // result=result = result=this->httpRequest(url);//url); // url);//jsoninfo = json_decode(result,true);//result, true); // result,true);//openid = $jsoninfo["data"]["openid"][0];
     if ($access_token && $openid) {
        $url = "https://api.weixin.qq.com/sns/userinfo?access\_token=" . $access\_token . "&openid=" . $openid . "&lang=zh_CN";
        $output = $this->httpRequest($url);
复制代码
//用户信息数组jsonUserinfo jsonUserinfo=json_decode(jsonUserinfo = json\_decode(jsonUserinfo=json_decode(output, true); return this−>result(0,′登录成功′,this->result(0, '登录成功', this−>result(0,′登录成功′,jsonUserinfo); } } }