WeChat public account implements user management function

一个新手
Release: 2017-09-14 10:47:50
Original
5830 people have browsed it

1. Set the user remark name

Interface: https://api.weixin.qq.com/cgi-bin/user/info/updateremark?access_token=ACCESS_TOKEN

updateremark. php


        
Copy after login

Return:

{"errcode":0,"errmsg":"ok"}
Copy after login
Copy after login
Copy after login
Copy after login

2. Obtain basic user information

Interface: https://api.weixin.qq.com/cgi-bin/user/info ?access_token=ACCESS_TOKEN&openid=OPENID&lang=zh_CN

userInfp.php


        
Copy after login

Return:

{ "subscribe": 1, "openid": "o4WmZ0h-4huBUVQUczx2ezaxIL9c", "nickname": "Promise", "sex": 1, "language": "zh_CN", "city": "", "province": "", "country": "", "headimgurl": "http://wx.qlogo.cn/mmopen/Vq7PMkMOaMYgtQNJBrdesiantXGgGkliaoI3StUtnG5DUA1oYaeTlOdjicYHu9EkMvLY2gXf7rHBzGNiaPoDyvmZ0ONEGm7PfGBb/0", "subscribe_time": 1504708412, "remark": "Jhon", "groupid": 0, "tagid_list": [] }
Copy after login

3. Get user messages in batches

Interface: https:/ /api.weixin.qq.com/cgi-bin/user/info/batchget?access_token=ACCESS_TOKEN

batchget.php


        
Copy after login

Return:

{ "user_info_list": [ { "subscribe": 1, "openid": "o4WmZ0h-4huBUVQUczx2ezaxIL9c", "nickname": "Promise", "sex": 1, "language": "zh_CN", "city": "", "province": "", "country": "", "headimgurl": "http://wx.qlogo.cn/mmopen/Vq7PMkMOaMYgtQNJBrdesiantXGgGkliaoI3StUtnG5DUA1oYaeTlOdjicYHu9EkMvLY2gXf7rHBzGNiaPoDyvmZ0ONEGm7PfGBb/0", "subscribe_time": 1504708412, "remark": "Jhon", "groupid": 0, "tagid_list": [] } ] }
Copy after login

4. Create Tag

Interface: https://api.weixin.qq.com/cgi-bin/tags/create?access_token=ACCESS_TOKEN

tags_create.php


        
Copy after login

Return:

{ "tag": { "id": 101, "name": "朋友" } }
Copy after login

5. Get to create tags

Interface: https://api.weixin.qq.com/cgi-bin/tags/get?access_token=ACCESS_TOKEN

tags_get.php


        
Copy after login

Return:

{ "tags": [ { "id": 2, "name": "星标组", "count": 0 }, { "id": 100, "name": "同学", "count": 0 }, { "id": 101, "name": "朋友", "count": 0 } ] }
Copy after login

6. Edit tag

interface: https://api.weixin.qq.com/cgi-bin/tags/update ?access_token=ACCESS_TOKEN

tags_update.php


        
Copy after login

Return:

{"errcode":0,"errmsg":"ok"}
Copy after login
Copy after login
Copy after login
Copy after login

7. Delete tag

When the number of fans under a certain tag exceeds 100,000, Tags cannot be deleted directly in the background. At this time, developers can first cancel the label in the openid list under the label, and then delete the label directly until the number of fans does not exceed 100,000.

Interface: https://api.weixin.qq.com/cgi-bin/tags/delete?access_token=ACCESS_TOKEN

tags_delete.php


        
Copy after login

Return:

{"errcode":0,"errmsg":"ok"}
Copy after login
Copy after login
Copy after login
Copy after login

8. Tag users in batches

The tag function currently supports official accounts to tag up to 20 users.

Interface: https://api.weixin.qq.com/cgi-bin/tags/members/batchtagging?access_token=ACCESS_TOKEN

tags_batchtagging.php


        
Copy after login

Return result:

{"errcode":0,"errmsg":"ok"}
Copy after login

9. Get the list of fans under the tag

Interface: https://api.weixin.qq.com/cgi-bin/user/tag/get?access_token =ACCESS_TOKEN

"next_openid":""//The first OPENID pulled, if not filled in, it will be pulled from the beginning by default

tags_get_user.php


        
Copy after login

Return:

{ "count": 1, "data": { "openid": [ "o4WmZ0h-4huBUVQUczx2ezaxIL9c" ] }, "next_openid": "o4WmZ0h-4huBUVQUczx2ezaxIL9c" }
Copy after login

10. Get the tag list on the user

Interface; https://api.weixin.qq.com/cgi-bin/tags/getidlist?access_token=ACCESS_TOKEN

tags_getidlist.php


        
Copy after login

Return:

{ "tagid_list": [ 100 ] }
Copy after login

11. Cancel tags for users in batches

Interface: https://api.weixin.qq.com/ cgi-bin/tags/members/batchuntagging?access_token=ACCESS_TOKEN

tags_batchuntagging.php


        
Copy after login

Return:

{"errcode":0,"errmsg":"ok"}
Copy after login
Copy after login
Copy after login
Copy after login

The above is the detailed content of WeChat public account implements user management function. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!