创建精华消息
用于将messageId添加为子频道 channelId 内的精华消息。
::: warning 注意
- 精华消息在一个子频道内最多只能创建
20条。 - 只有可见的消息才能被设置为精华消息。
- 接口返回对象中
message_ids为当前请求后子频道内所有精华消息message_id数组。
:::
使用示例
sync
import qqbottoken = qqbot.Token({appid}, {token})def demo():api = qqbot.PinsAPI(token, IS_SANDBOX)result = api.put_pin(channel_id, message_id)
async
import qqbottoken = qqbot.Token({appid}, {token})async def demo():api = qqbot.AsyncPinsAPI(token, IS_SANDBOX)result = await api.put_pin(channel_id, message_id)
参数说明
| 字段名 | 必填 | 类型 | 描述 |
|---|---|---|---|
| channel_id | 是 | string | 子频道 ID |
| message_id | 是 | string | 消息 ID |
返回说明
返回 PinsMessage 对象。
PinsMessage
| 字段名 | 类型 | 描述 |
|---|---|---|
| guild_id | string | 频道 ID |
| channel_id | string | 子频道 ID |
| message_ids | string 列表 | 消息 ID 列表 |
返回示例
data:
{"guild_id": "xxxxxx","channel_id": "xxxxxx","message_ids": ["xxxxx"]}
