查询关注须要用到这个接口
获取token用到这个接口
<?php
//获取access_token
$token = file_get_contents('https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=SECRET');
$actoken = json_decode($token);
$openid = '更换为openid';
//查询是否关注
$subStr = sprintf('https://api.weixin.qq.com/cgi-bin/user/info?access_token=%s&openid=%s&lang=zh_CN',$actoken->access_token,$openid);
$result = json_decode(file_get_contents($subStr));
var_dump($result);
// 1为已关注,0未关注/取消关注
?>
查询结果
这个办法是不是大略粗暴?反正小项目我就直接用了