WeChat 공개 계정 개발에서 사용자 태그 관리는 개발자가 사용자를 더 잘 이해하고 관리할 수 있도록 하는 매우 중요한 기능입니다. 이 기사에서는 PHP를 사용하여 WeChat 사용자 태그 관리 기능을 구현하는 방법을 소개합니다.
1. WeChat 사용자 openid 얻기
WeChat 사용자 태그 관리 기능을 사용하기 전에 먼저 사용자의 openid를 얻어야 합니다. WeChat 공개 계정을 개발할 때 사용자 인증을 통해 openid를 얻는 것이 일반적인 관행입니다. 사용자 인증이 완료되면 다음 코드를 통해 사용자 openid를 얻을 수 있습니다.
$code = $_GET['code']; $accessToken = getAccessToken(); $openid_res = file_get_contents("https://api.weixin.qq.com/sns/oauth2/access_token?appid=APPID&secret=APPSECRET&code={$code}&grant_type=authorization_code"); $openid_obj = json_decode($openid_res, true); $openid = $openid_obj['openid'];
그 중 getAccessToken() 함수를 사용하여 공식 계정의 access_token을 얻습니다.
2. 사용자 태그 목록 가져오기
사용자 태그 목록을 가져오기 전에 먼저 모든 태그를 가져와야 합니다. 라벨 목록을 획득하는 코드는 다음과 같습니다.
$accessToken = getAccessToken(); $url = "https://api.weixin.qq.com/cgi-bin/tags/get?access_token={$accessToken}"; $data = file_get_contents($url); $tags = json_decode($data, true)['tags'];
라벨 목록을 획득한 후 다음 코드를 통해 사용자가 소유한 라벨을 획득할 수 있습니다.
$accessToken = getAccessToken(); $url = "https://api.weixin.qq.com/cgi-bin/tags/getidlist?access_token={$accessToken}"; $data = '{ "openid":' . '"' . $openid . '" }'; $tags_res = httpPost($url, $data); //httpPost为自定义函数 $tags_obj = json_decode($tags_res, true); $tagid_list = $tags_obj['tagid_list'];
그 중 httpPost 함수는 구현하는 데 사용되는 커스텀 함수입니다. HTTP POST 요청.
3. 사용자 태그 생성
새 사용자 태그를 생성해야 하는 경우 다음 코드를 통해 수행할 수 있습니다.
$accessToken = getAccessToken(); $url = "https://api.weixin.qq.com/cgi-bin/tags/create?access_token={$accessToken}"; $data = '{ "tag" : { "name" : "新标签" } }'; $res = httpPost($url, $data); //httpPost为自定义函数 $newTag = json_decode($res, true)['tag']; $tagid = $newTag['id'];
4. 사용자 태그 및 태그 해제
사용자가 소유한 태그 목록을 가져온 후 사용자는 여러 태그를 추가하거나 기존 태그를 취소할 수 있습니다. 라벨링 및 라벨링 해제 코드는 다음과 같습니다.
//为用户添加标签 $accessToken = getAccessToken(); $url = "https://api.weixin.qq.com/cgi-bin/tags/members/batchtagging?access_token={$accessToken}"; $data = '{ "openid_list": ["' . $openid . '"], "tagid": ' . $tagid . ' }'; $res = httpPost($url, $data); //httpPost为自定义函数 //为用户取消标签 $accessToken = getAccessToken(); $url = "https://api.weixin.qq.com/cgi-bin/tags/members/batchuntagging?access_token={$accessToken}"; $data = '{ "openid_list": ["' . $openid . '"], "tagid": ' . $tagid . ' }'; $res = httpPost($url, $data); //httpPost为自定义函数
5. 요약
이 글에서는 PHP를 사용하여 WeChat 사용자 openid 획득, 사용자 라벨 목록 획득, 사용자 라벨 생성, 사용자 라벨링 등 WeChat 사용자 라벨 관리 기능을 구현하는 방법을 소개합니다. 태그 취소 등 사용자 태그 관리 기능을 통해 당사는 자체 사용자를 더 잘 이해하고 관리할 수 있으며, 후속 운영 및 프로모션에 대해 보다 타겟팅되고 효과적인 솔루션을 제공할 수 있습니다.
위 내용은 PHP WeChat 개발: 사용자 태그 관리 구현 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!