API Overview
Message Callbacks
Status Codes
Overview
Retrieves the reaction list for a Moment.
Request
Authentication: Add authentication headers to the request. See Authentication
Method:
GET
Rate limit:
100 requests/second
Endpoint: https://API domain/momentgateway/moments/reactions/list
Content-Type:
application/json
Request parameters
| Parameter | Data type | Required | Description | |
|---|---|---|---|---|
| moment_id | string | Yes | Moment ID. |
Request example
GET /momentgateway/moments/reactions/list?moment_id=xxx HTTP/1.1
appkey: appkey
Authorization: xxxxxxxxxxxxxxxxxx
Content-Type: application/json
Response example
{
"code":0,
"msg":"sucess",
"data":{
"items":[
{
"key":"k1",
"value":"v1",
"timestamp":1732123456789,
"user_info":{
"user_id":"xxx",
"nickname":"xxxxx",
"avatar":"xxxx",
"user_type":0
}
}
]
}
}