wxpusher / wxpusher-client

微信消息实时推送服务[WxPusher],可以通过API实时给个人微信推送消息。wechat pusher.
http://wxpusher.zjiecode.com/demo
Apache License 2.0
746 stars 93 forks source link

[FeatureRequest] 希望有Topic管理API #68

Open wsy opened 10 months ago

wsy commented 10 months ago

APIs:

NewTopic(Data) -> Topic
EditTopic(Data) -> Topic
GetTopic(Name) -> Topic
GetTopic(TopicId) -> Topic
GetTopics(AppId) -> List<Topic>
AddUserToTopic(TopicId, UserId) -> int
RemoveUserFromTopic(TopicId, UserId) -> int

Data: Topic

{
  "id": 1024,
  "appId": "appId",
  "name": "string",
  "description": "string",
  "users": [ "userId1", "userId2" ],
  "date_created": 1705312300,
  "date_updated": 1705482300
}