PHP获取小程序用户openid

Posted 不教一日闲过

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP获取小程序用户openid相关的知识,希望对你有一定的参考价值。

代码如下:

//code值,从前端获取
$code = $_GET[code];

//注册时获取
$appid="xxxxxxxxxxxxx";
$secret = "xxxxxxxxxxxxxxxxxxxxx";

$get_code_url = https://api.weixin.qq.com/sns/jscode2session?appid=.$appid.&secret=.$secret.&js_code=.$code.&grant_type=authorization_code;
$ret=file_get_contents($get_code_url);
$openid= json_decode($ret)->{openid};

 

以上是关于PHP获取小程序用户openid的主要内容,如果未能解决你的问题,请参考以下文章

PHP 微信公众号/小程序获取openid,用户信息

php小程序登录时解密getUserInfo获取openId和unionId等敏感信息

微信小程序实现微信登陆(TP5后端)

微信小程序,weixin,怎么获取用户的Openid

微信小程序 获取用户openid并给webview传值

小程序怎么获取用户的openid