package
1.2.1
Repository: https://github.com/bububa/wechat.git
Documentation: pkg.go.dev

# README

用户管理

# Packages

用户分组管理.
No description provided by the author

# Functions

批量获取用户基本信息 注意: 需要对返回的 UserInfoList 的每个 UserInfo.IsSubscriber 做判断.
BatchMoveToGroup 批量移动用户分组.
Get 获取用户基本信息.
GroupId 查询用户所在分组.
List 获取用户列表.
MoveToGroup 移动用户分组.
NewUserIterator 获取用户遍历器, 从 nextOpenId 开始遍历, 如果 nextOpenId == "" 则表示从头遍历.
UpdateRemark 设置用户备注名.

# Constants

英文.
简体中文.
繁体中文.
女性.
男性.
未知.

# Structs

获取用户列表返回的数据结构.
No description provided by the author
UserIterator iter, err := NewUserIterator(clt, "NextOpenId") if err != nil { // TODO: 增加你的代码 } for iter.HasNext() { openids, err := iter.NextPage() if err != nil { // TODO: 增加你的代码 } // TODO: 增加你的代码 }.