這篇文章介紹的內容是關於php 微信獲取用戶資訊全碼,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下
因為項目需要,我也是一個新手,所以用了兩天把支付,分享,還有獲取用戶資訊做完了,作為一個新手,在網上找代碼真心費力!所以為了,讓更多的新手一看就會,不走彎路,在此特地寫張這篇文章!好了,廢話不多說直接上程式碼和方法!我的qq1414970267,不會的直接問我!
config.php 程式碼
<?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); ?>
#這就是取得資訊的全部程式碼,程式碼親測,絕對可用!不懂可用問我!
相關推薦:
##
以上是php 微信取得使用者資訊全碼的詳細內容。更多資訊請關注PHP中文網其他相關文章!