View Source WeChat.UserTag (wechat v0.16.0)

标签管理

官方文档

Summary

Functions

获取公众号已创建的标签 - 官方文档

获取标签下粉丝列表 - 官方文档

获取标签下粉丝列表 - 翻页 - 官方文档

获取用户身上的标签列表 - 官方文档

Types

@type tag_id() :: integer()
@type tag_name() :: String.t()

Functions

Link to this function

batch_tagging_users(client, id, openid_list)

View Source
@spec batch_tagging_users(WeChat.client(), tag_id(), WeChat.openid_list()) ::
  WeChat.response()

批量为用户打标签 - 官方文档

Link to this function

batch_untagging_users(client, id, openid_list)

View Source
@spec batch_untagging_users(WeChat.client(), tag_id(), WeChat.openid_list()) ::
  WeChat.response()

批量为用户取消标签 - 官方文档

@spec create(WeChat.client(), tag_name()) :: WeChat.response()

创建标签 - 官方文档

@spec delete(WeChat.client(), tag_id()) :: WeChat.response()

删除标签 - 官方文档

@spec get(WeChat.client()) :: WeChat.response()

获取公众号已创建的标签 - 官方文档

Link to this function

get_tag_users(client, id)

View Source
@spec get_tag_users(WeChat.client(), tag_id()) :: WeChat.response()

获取标签下粉丝列表 - 官方文档

Link to this function

get_tag_users(client, id, next_openid)

View Source
@spec get_tag_users(WeChat.client(), tag_id(), next_openid :: WeChat.openid()) ::
  WeChat.response()

获取标签下粉丝列表 - 翻页 - 官方文档

Link to this function

get_user_tags(client, openid)

View Source
@spec get_user_tags(WeChat.client(), WeChat.openid()) :: WeChat.response()

获取用户身上的标签列表 - 官方文档

Link to this function

update(client, id, name)

View Source
@spec update(WeChat.client(), tag_id(), tag_name()) :: WeChat.response()

编辑标签 - 官方文档