获取贴表情详情
POST
/fetch_emoji_like
请求参数
Body 参数application/json
message_id
message_id
One of
emojiId
string
表情ID
emojiType
string
表情类型
group_id
group_id
One of
user_id
user_id
One of
count
number
可选
示例
{
"message_id": 123456,
"emojiId": "97",
"emojiType": "1"
}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request POST '/fetch_emoji_like' \
--header 'Content-Type: application/json' \
--data-raw '{
"message_id": 123456,
"emojiId": "97",
"emojiType": "1"
}'
返回响应
🟢200成功
application/json
Body
status
enum<string>
必需
枚举值:
ok
retcode
number
必需
data
object
必需
result
number
必需
errMsg
string
必需
emojiLikesList
array [object {3}]
必需
cookie
string
必需
isLastPage
boolean
必需
isFirstPage
boolean
必需
message
string
必需
wording
string
必需
echo
string | null
必需
示例
{
"status": "ok",
"retcode": 0,
"data": {
"result": 0,
"errMsg": "string",
"emojiLikesList": [
{
"tinyId": "string",
"nickName": "string",
"headUrl": "string"
}
],
"cookie": "string",
"isLastPage": true,
"isFirstPage": true
},
"message": "string",
"wording": "string",
"echo": "string"
}
修改于 2024-10-29 03:24:26