<?php
// Your WeChat app credentials
$accessToken = 'YOUR_ACCESS_TOKEN'; // Get this from the OAuth2.0 process or other means
$openid = 'USER_OPENID'; // The recipient's OpenID
// Function to get user information
function getUserInfo($accessToken, $openid) {
$url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token={$accessToken}&openid={$openid}&lang=zh_CN";
$response = file_get_contents($url);
return json_decode($response, true);
}
// Get the user information
$userInfo = getUserInfo($accessToken, $openid);
// Output the user information
echo "<pre>";
print_r($userInfo);
echo "</pre>";
?>
这个PHP脚本用于通过微信公众平台的API获取用户的信息。通过该脚本,你可以获取某个用户的基本信息,如昵称、性别、城市等。
在使用这个脚本之前,你需要:
- 替换
YOUR_ACCESS_TOKEN
为你通过微信授权流程获得的有效访问令牌(Access Token)。 - 替换
USER_OPENID
为你想要查询信息的用户的OpenID。
getUserInfo
函数向微信API接口发送请求,获取指定OpenID用户的详细信息。脚本最后将这些信息以结构化的格式输出,方便查看和处理用户数据。