WeChat public account implements user management function
1. Set the user remark name
Interface: https://api.weixin.qq.com/cgi-bin/user/info/updateremark?access_token=ACCESS_TOKEN
updateremark. php
<?php require_once("../Utils.php"); $data = '{ "openid":"o4WmZ0h-4huBUVQUczx2ezaxIL9c", "remark":"Jhon" }'; $url = "https://api.weixin.qq.com/cgi-bin/user/info/updateremark?" ."access_token=".Utils::get_access_token(); $result = Utils::https_request($url, $data); echo $result;
Return:
{"errcode":0,"errmsg":"ok"}
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
<?php require_once("../Utils.php"); $openId = "o4WmZ0h-4huBUVQUczx2ezaxIL9c"; $url = "https://api.weixin.qq.com/cgi-bin/user/info?access_token=" .Utils::get_access_token()."&openid=".$openId."&lang=zh_CN "; $result = Utils::https_request($url); echo $result;
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": [] }
3. Get user messages in batches
Interface: https:/ /api.weixin.qq.com/cgi-bin/user/info/batchget?access_token=ACCESS_TOKEN
batchget.php
<?php require_once("../Utils.php"); $data = '{ "user_list": [ { "openid": "o4WmZ0h-4huBUVQUczx2ezaxIL9c", "lang": "zh_CN" } ] }'; $url = "https://api.weixin.qq.com/cgi-bin/user/info/batchget?" ."access_token=".Utils::get_access_token(); $result = Utils::https_request($url, $data); echo $result;
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": [] } ] }
4. Create Tag
Interface: https://api.weixin.qq.com/cgi-bin/tags/create?access_token=ACCESS_TOKEN
tags_create.php
<?php @header('Content-type: text/plain;charset=UTF-8'); require_once("../Utils.php"); $data = '{ "tag" : { "name" : "朋友" } }'; $url = "https://api.weixin.qq.com/cgi-bin/tags/create?" ."access_token=".Utils::get_access_token(); $result = Utils::https_request($url, $data); echo $result;
Return:
{ "tag": { "id": 101, "name": "朋友" } }
5. Get to create tags
Interface: https://api.weixin.qq.com/cgi-bin/tags/get?access_token=ACCESS_TOKEN
tags_get.php
<?php @header('Content-type: text/plain;charset=UTF-8'); require_once("../Utils.php"); $url = "https://api.weixin.qq.com/cgi-bin/tags/get?access_token=" .Utils::get_access_token(); $result = Utils::https_request($url); echo $result;
Return:
{ "tags": [ { "id": 2, "name": "星标组", "count": 0 }, { "id": 100, "name": "同学", "count": 0 }, { "id": 101, "name": "朋友", "count": 0 } ] }
6. Edit tag
interface: https://api.weixin.qq.com/cgi-bin/tags/update ?access_token=ACCESS_TOKEN
tags_update.php
<?php @header('Content-type: text/plain;charset=UTF-8'); require_once("../Utils.php"); $data = '{ "tag" : { "id" : 101, "name" : "好朋友" } }'; $url = "https://api.weixin.qq.com/cgi-bin/tags/update?" ."access_token=".Utils::get_access_token(); $result = Utils::https_request($url, $data); echo $result;
Return:
{"errcode":0,"errmsg":"ok"}
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
<?php @header('Content-type: text/plain;charset=UTF-8'); require_once("../Utils.php"); $data = '{ "tag" : { "id" : 101 } }'; $url = "https://api.weixin.qq.com/cgi-bin/tags/delete?" ."access_token=".Utils::get_access_token(); $result = Utils::https_request($url, $data); echo $result;
Return:
{"errcode":0,"errmsg":"ok"}
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
<?php @header('Content-type: text/plain;charset=UTF-8'); require_once("../Utils.php"); $data = '{ "openid_list" : [ "o4WmZ0h-4huBUVQUczx2ezaxIL9c" ], "tagid" : 100 }'; $url = "https://api.weixin.qq.com/cgi-bin/tags/members/batchtagging?" ."access_token=".Utils::get_access_token(); $result = Utils::https_request($url, $data); echo $result;
Return result:
{"errcode":0,"errmsg":"ok"}
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
<?php @header('Content-type: text/plain;charset=UTF-8'); require_once("../Utils.php"); $data = '{ "tagid" : 100, "next_openid":"" }'; $url = "https://api.weixin.qq.com/cgi-bin/user/tag/get?" ."access_token=".Utils::get_access_token(); $result = Utils::https_request($url, $data); echo $result;
Return:
{ "count": 1, "data": { "openid": [ "o4WmZ0h-4huBUVQUczx2ezaxIL9c" ] }, "next_openid": "o4WmZ0h-4huBUVQUczx2ezaxIL9c" }
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
<?php @header('Content-type: text/plain;charset=UTF-8'); require_once("../Utils.php"); $data = '{ "openid" : "o4WmZ0h-4huBUVQUczx2ezaxIL9c" }'; $url = "https://api.weixin.qq.com/cgi-bin/tags/getidlist?" ."access_token=".Utils::get_access_token(); $result = Utils::https_request($url, $data); echo $result;
Return:
{ "tagid_list": [ 100 ] }
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
<?php @header('Content-type: text/plain;charset=UTF-8'); require_once("../Utils.php"); $data = '{ "openid_list" : [ "o4WmZ0h-4huBUVQUczx2ezaxIL9c" ], "tagid" : 100 }'; $url = "https://api.weixin.qq.com/cgi-bin/tags/members/batchuntagging?" ."access_token=".Utils::get_access_token(); $result = Utils::https_request($url, $data); echo $result;
Return:
{"errcode":0,"errmsg":"ok"}
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!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



With the rapid development of social media, Xiaohongshu has become one of the most popular social platforms. Users can create a Xiaohongshu account to show their personal identity and communicate and interact with other users. If you need to find a user’s Xiaohongshu number, you can follow these simple steps. 1. How to use Xiaohongshu account to find users? 1. Open the Xiaohongshu APP, click the "Discover" button in the lower right corner, and then select the "Notes" option. 2. In the note list, find the note posted by the user you want to find. Click to enter the note details page. 3. On the note details page, click the "Follow" button below the user's avatar to enter the user's personal homepage. 4. In the upper right corner of the user's personal homepage, click the three-dot button and select "Personal Information"

In Ubuntu systems, the root user is usually disabled. To activate the root user, you can use the passwd command to set a password and then use the su- command to log in as root. The root user is a user with unrestricted system administrative rights. He has permissions to access and modify files, user management, software installation and removal, and system configuration changes. There are obvious differences between the root user and ordinary users. The root user has the highest authority and broader control rights in the system. The root user can execute important system commands and edit system files, which ordinary users cannot do. In this guide, I'll explore the Ubuntu root user, how to log in as root, and how it differs from a normal user. Notice

There will be many AI creation functions in the Doubao app, so what functions does the Doubao app have? Users can use this software to create paintings, chat with AI, generate articles for users, help everyone search for songs, etc. This function introduction of the Doubao app can tell you the specific operation method. The specific content is below, so take a look! What functions does the Doubao app have? Answer: You can draw, chat, write articles, and find songs. Function introduction: 1. Question query: You can use AI to find answers to questions faster, and you can ask any kind of questions. 2. Picture generation: AI can be used to create different pictures for everyone. You only need to tell everyone the general requirements. 3. AI chat: can create an AI that can chat for users,

Both vivox100s and x100 mobile phones are representative models in vivo's mobile phone product line. They respectively represent vivo's high-end technology level in different time periods. Therefore, the two mobile phones have certain differences in design, performance and functions. This article will conduct a detailed comparison between these two mobile phones in terms of performance comparison and function analysis to help consumers better choose the mobile phone that suits them. First, let’s look at the performance comparison between vivox100s and x100. vivox100s is equipped with the latest

With the rapid development of the Internet, the concept of self-media has become deeply rooted in people's hearts. So, what exactly is self-media? What are its main features and functions? Next, we will explore these issues one by one. 1. What exactly is self-media? We-media, as the name suggests, means you are the media. It refers to an information carrier through which individuals or teams can independently create, edit, publish and disseminate content through the Internet platform. Different from traditional media, such as newspapers, television, radio, etc., self-media is more interactive and personalized, allowing everyone to become a producer and disseminator of information. 2. What are the main features and functions of self-media? 1. Low threshold: The rise of self-media has lowered the threshold for entering the media industry. Cumbersome equipment and professional teams are no longer needed.

As Xiaohongshu becomes popular among young people, more and more people are beginning to use this platform to share various aspects of their experiences and life insights. How to effectively manage multiple Xiaohongshu accounts has become a key issue. In this article, we will discuss some of the features of Xiaohongshu account management software and explore how to better manage your Xiaohongshu account. As social media grows, many people find themselves needing to manage multiple social accounts. This is also a challenge for Xiaohongshu users. Some Xiaohongshu account management software can help users manage multiple accounts more easily, including automatic content publishing, scheduled publishing, data analysis and other functions. Through these tools, users can manage their accounts more efficiently and increase their account exposure and attention. In addition, Xiaohongshu account management software has

Analysis of user password storage mechanism in Linux system In Linux system, the storage of user password is one of the very important security mechanisms. This article will analyze the storage mechanism of user passwords in Linux systems, including the encrypted storage of passwords, the password verification process, and how to securely manage user passwords. At the same time, specific code examples will be used to demonstrate the actual operation process of password storage. 1. Encrypted storage of passwords In Linux systems, user passwords are not stored in the system in plain text, but are encrypted and stored. L

PHP Tips: Quickly implement the function of returning to the previous page. In web development, we often encounter the need to implement the function of returning to the previous page. Such operations can improve the user experience and make it easier for users to navigate between web pages. In PHP, we can achieve this function through some simple code. This article will introduce how to quickly implement the function of returning to the previous page and provide specific PHP code examples. In PHP, we can use $_SERVER['HTTP_REFERER'] to get the URL of the previous page
