This article introduces the content of php WeChat to obtain the full code of user information. It has a certain reference value. Now I share it with everyone. Friends in need can refer to it
Because of the project needs, I am also a I’m a newbie, so it took me two days to complete payment, sharing, and obtaining user information. As a newbie, it’s really hard to find codes online! So in order to let more novices understand it at a glance without taking detours, I wrote this article here! Okay, without further ado, let’s get straight to the code and methods! My qq1414970267, if you don’t know, just ask me!
config.php code
<?php session_start(); $appid = 'wxc0edcad16ff403cb'; $secret = '3d3b62ae770eff710eaa9d82722639cd'; ?> index.php <?php include_once 'config.php'; $redirect_uri = "http://www.127ck.com/index1/openid.php"; $redirect_uri = urlencode($redirect_uri); $url = "https://open.weixin.qq.com/connect/oauth2/authorize?appid=" . $appid . "&redirect_uri=" . $redirect_uri . "&response_type=code&scope=snsapi_userinfo&state=STATE#wechat_redirect"; header('Location: ' . $url . ''); ?> openid.php <?php include_once 'config.php'; $code = $_GET['code']; function get_curl($url) { $ch = curl_init(); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $result = curl_exec($ch); $rs = $result ? json_decode($result, true) : ""; return $rs; } $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=" . $appid . "&secret=" . $secret . "&code=" . $code . "&grant_type=authorization_code"; $rs = get_curl($url); $openid = $rs['openid']; $access_token = $rs['access_token']; $url_userinfo = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=".$access_token."&openid=".$openid."&lang=zh_CN"; $rs_userinfo = get_curl($url_userinfo); var_dump($rs_userinfo); ?>
This is all the code to get the information. The code has been tested by myself and it is absolutely usable! If you don’t understand, you can ask me!
Related recommendations:
php WeChat public account development cash red envelope
##
The above is the detailed content of PHP WeChat obtains the full code of user information. For more information, please follow other related articles on the PHP Chinese website!