标签:lda cat ant style console encode public 实现 xxxx
通过登录接口获取登录凭证,然后通过request请求后台获取openid,需要把后台域名放到小程序后台的request 合法域名内:
1.wx.login 获取登录凭证
2.wx.request
发起的是 HTTPS 请求
3.后台处理请求并返回openid
下面是实现代码:
小程序代码:
wx.login({
public function getopenid(){
$data = $_POST;
//echo json_encode($data);
$appid=$data[‘appid‘];
$appsecret=$data[‘appsecret‘];
$code=$data[‘code‘];
$get_url="https://api.weixin.qq.com/sns/jscode2session?appid=".$appid."&secret=".$appsecret."&js_code=".$code."&grant_type=authorization_code";
$get_return = file_get_contents($get_url);
$get_return = (array)json_decode($get_return);
//$openid=$get_return[‘openid‘];
echo json_encode($get_return);exit();
}
以上就是小程序获取openid的方法。
标签:lda cat ant style console encode public 实现 xxxx
原文地址:http://www.cnblogs.com/fortitude526/p/7760165.html