WeChat.UserTag (wechat v0.2.0)
标签管理
Link to this section Summary
Link to this section Types
Link to this type
tag_id()
Specs
tag_id() :: integer()
Link to this type
tag_name()
Specs
tag_name() :: String.t()
Link to this section Functions
Link to this function
batch_tagging_users(client, id, openid_list)
Specs
batch_tagging_users(WeChat.client(), tag_id(), [WeChat.openid()]) :: WeChat.response()
批量为用户打标签 - 官方文档
Link to this function
batch_untagging_users(client, id, openid_list)
Specs
batch_untagging_users(WeChat.client(), tag_id(), [WeChat.openid()]) :: WeChat.response()
批量为用户取消标签 - 官方文档
Link to this function
create(client, name)
Specs
create(WeChat.client(), tag_name()) :: WeChat.response()
创建标签 - 官方文档
Link to this function
delete(client, id)
Specs
delete(WeChat.client(), tag_id()) :: WeChat.response()
删除标签 - 官方文档
Link to this function
get(client)
Specs
get(WeChat.client()) :: WeChat.response()
获取公众号已创建的标签 - 官方文档
Link to this function
get_tag_users(client, id)
Specs
get_tag_users(WeChat.client(), tag_id()) :: WeChat.response()
获取标签下粉丝列表 - 官方文档
Link to this function
get_tag_users(client, id, next_openid)
Specs
get_tag_users(WeChat.client(), tag_id(), next_openid :: WeChat.openid()) :: WeChat.response()
获取标签下粉丝列表 - 翻页 - 官方文档
Link to this function
get_user_tags(client, openid)
Specs
get_user_tags(WeChat.client(), WeChat.openid()) :: WeChat.response()
获取用户身上的标签列表 - 官方文档
Link to this function
update(client, id, name)
Specs
update(WeChat.client(), tag_id(), tag_name()) :: WeChat.response()
编辑标签 - 官方文档