【微信公众号】PHP 实现公众号网页授权登录

官方文档地址:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421140842

第一步:index.php 页面,用户同意授权,获取 code,


$appid = 'APPID';
$redirect_uri = urlencode('http://example.com/test.php');//重定向地址

$url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=$appid&redirect_uri=$redirect_uri&response_type=code&scope=snsapi_userinfo&state=1#wechat_redirect";
header("Location:" . $url);

第二步:test.php 页面,通过返回的 code 获取网页授权的 access_token 和用户信息


$appid = "APPID";
$secret = "APPSECRET";
$code = $_GET["code"];

$oauth2Url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$secret&code=$code&grant_type=authorization_code";
$oauth2 = getJson($oauth2Url);

// 获得 access_token 和openid
$access_token = $oauth2["access_token"];
$openid = $oauth2['openid'];

function getJson($url){
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    $output = curl_exec($ch);
    curl_close($ch);
    return json_decode($output, true);
}

$get_user_info_url = "https://api.weixin.qq.com/sns/userinfo?access_token=$access_token&openid=$openid&lang=zh_CN";
$userinfo = getJson($get_user_info_url);

//打印用户信息
print_r($userinfo);
//array('openid' => 'oiuH-xxxxxxxxxxxxx',
        'sex' => 1,
        'language' => 'zh_CN',
        'city' => '南宁',
        'province' => '广西',
        'country' => '中国',
        'headimgurl' => '',
        'privilege' => array()
);

你可能感兴趣的:(微信)