1. 目录
  2. 锚点

判断是否绑定公众号

首页 > 前端开发 > 公众号/微信 更新日期:2024-02-01 11:33:30

判断是否绑定公众号

$accessToken = x;
$open_id = x;

// 判断用户是否关注公众号
$url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token={$accessToken}&openid={$open_id}";
$response = file_get_contents($url);
$userInfo = json_decode($response, true);


if ($userInfo['subscribe'] != 1) {

    // 未关注
}