获取消息表情回复
GET
/open-apis/im/v1/messages/{message_id}/reactions
注意事项:
错误码
HTTP状态码 | 错误码 | 描述 | 排查建议 |
---|---|---|---|
400 | 231001 | reaction type is invalid. | reaction类型不合法,需要确认正确的emoji type。 |
400 | 231003 | The message is not found, maybe not exist or deleted. | 找不到被添加reaction的消息,可能消息ID有误或者消息已经被撤回,删除等。 |
400 | 231008 | The operator has no access to the message. | 操作人对该消息没有访问权限,一般是因为操作人不在消息所在会话内。 |
400 | 231012 | The request has an invalid pageToken. | pageToken参数不合法。 |
400 | 231013 | The request has an invalid AuthType. | request的授权方式不合法,没有使用tenant_access_token或者user_access_token。 |
400 | 231014 | user_id_type is invalid. | user_id_type不合法,没有使用open_id,union_id,user_id三者之一。 |
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://open.feishu.cn/open-apis/im/v1/messages/om_8964d1b4*********2b31383276113/reactions?reaction_type=LAUGH' \
--header 'Authorization: Bearer {{tenant_access_token|}}' \
--header 'Authorization;'
响应示例响应示例
{
"code": 0,
"msg": "success",
"data": {
"items": [
{
"reaction_id": "ZCaCIjUBVVWSrm5L-3ZTw*************sNa8dHVplEzzSfJVUVLMLcS_",
"operator": {
"operator_id": "ou_ff0b7ba35fb********67dfc8b885136",
"operator_type": "app/user"
},
"action_time": "1626086391570",
"reaction_type": {
"emoji_type": "SMILE"
}
}
],
"has_more": true,
"page_token": "YhljsPiGfUgnVAg9urvRFd-BvSqRL*********Wfa9xXkud6UKCybPuUgQ1vM26dj6"
}
}
请求参数
Path 参数
message_id
string
必需
示例值:
om_8964d1b4*********2b31383276113
Query 参数
reaction_type
string
必需
示例值:
LAUGH
page_token
string
可选
示例值:
YhljsPiGfUgnVAg9urvRFd-BvSqRL20wMZNAWfa9xXkud6UKCybPuUgQ1vM26dj6
page_size
string
可选
示例值:
10
user_id_type
string
可选
示例值:
open_id
Header 参数
Authorization
string
必需
示例值:
Bearer {{tenant_access_token|}}
返回响应
修改于 2023-01-12 09:57:42