#

Description
- Refreshing the bullet screen game.
Request URL
Request Method
- Transfer protocol: HTTPS
- Request method: POST
- Parameters are passed in the request body in JSON format (see request example).
- Add the following to the request header: Content-Type: application/json;charset=utf-8
- Add the following to the request header: Authorization (Authentication request header)
Request Parameters
| Parameter |
Required |
Type |
Description |
| mg_id |
Yes |
string |
Game ID |
| anchor_id |
Yes |
string |
Anchor ID |
Request Example
{
"mg_id": "1554721242510114817",
"anchor_id": "60081"
}
Response Parameters
| Parameter |
Required |
Type |
Description |
| ret_code |
Yes |
int |
Response code |
| ret_msg |
Yes |
string |
Response message |
| data |
No |
BulletRefreshResp |
Response data |
| Parameter |
Required |
Type |
Description |
| expire_at |
Yes |
int64 |
Expiration time (within the expiration time, it needs to be refreshed regularly to maintain the online status) |
Response Example
{
"ret_code": 0,
"ret_msg": "success",
"data": {
"expire_at": 1691381675677
}
}