查询频道绑定的用户组列表
分页查询指定的超级群频道绑定的用户组列表,返回用户组 ID 列表。
请求方法
POST: https://数据中心域名/ultragroup/channel/usergroup/query.json
频率限制: 每秒钟限 100 次
签名规则: 所有服务端 API 请求均需要进行规则校验,详见 API 请求签名。
正文参数
HTTP 请求正文数据格式为 application/x-www-form-urlencoded
,支持以下 HTTP 表单参数:
参数 | 类型 | 是否必传 | 说明 |
---|---|---|---|
groupId | String | 是 | 超级群 ID |
busChannel | String | 是 | 频道ID |
page | int | 否 | 查询页码,默认1 |
pageSize | int | 否 | 每页条数,默认10,最多为50 |
请求示例
POST /ultragroup/channel/usergroup/query.json HTTP/1.1
Host: api.rong-api.com
App-key: kj8swf7oksq89
Nonce: 1181222303
Signature: 6221193e0ffebc01366da6e4cf8950cf32d274d6
Timestamp: 1668430324
Content-Type: application/x-www-form-urlencoded
Content-Length: 141
groupId=abc&busChannel=buschannel1&page=2&pageSize=20
返回结果
HTTP 响应正文包含具有以下结构的 JSON 对象:
参数 | 类型 | 说明 |
---|---|---|
code | int | 返回码 200 表示成功。 |
data | String[] | 用户组 ID 列表。 |
返回结果示例
{
"code":200,
"data":[
"userGroupId1",
"userGroupId2"
]
}