静默获取微信用户openid如此简单,只需要一句话

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了静默获取微信用户openid如此简单,只需要一句话相关的知识,希望对你有一定的参考价值。

页面A

getopenid.php

<?php
/**
 * Created by PhpStorm.
 * User: sunjianyin
 * Date: 2017/10/7
 * Time: 下午10:22
 */


header(‘Location:https://open.weixin.qq.com/connect/oauth2/authorize?appid=OPENID&redirect_uri=b.php&response_type=code&scope=snsapi_base&state=STATE#wechat_redirect‘);

其中的openid和回调的uri需要再自己设置,需要注意的是redirect_uri必须是在设置回调的域名下;

不需要任何其他,初始第一步这样,跳转到页面b.php,其中再获取$code=$_GET[‘code‘],就是code了

主要还是要看 https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140842

b.php

$code = $_GET[‘code‘];//获取code
$weixin =  file_get_contents("https://api.weixin.qq.com/sns/oauth2/access_token?appid=这里是你的APPID&secret=这里是你的SECRET&code=".$code."&grant_type=authorization_code");//通过code换取网页授权access_token
$jsondecode = json_decode($weixin); //对JSON格式的字符串进行编码
$array = get_object_vars($jsondecode);//转换成数组
$openid = $array[‘openid‘];//输出openid

 

以上是关于静默获取微信用户openid如此简单,只需要一句话的主要内容,如果未能解决你的问题,请参考以下文章

H5页面静默授权获取微信openid

微信第三方登录与静默授权和非静默授权

公众号微信第三方登录(静默授权和非静默授权)(具体代码:U盘 新浪云SAE)

公众号获取openid

微信公众号获取openid流程

微信公众号获取openid流程