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'];
このうち、公式アカウントの access_token の取得には getAccessToken() 関数を使用します。
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 function は、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 中国語 Web サイトの他の関連記事を参照してください。