live-room/get-live-room-messages

Description

  • Obtain messages from the live stream room, which can be obtained through polling.

Request URL

  • http://127.0.0.1:8888/api/

Request Method

  • POST

Parameters

Parameter NameRequiredParameter TypeDescription
typeYesintAPI ID
liveIdYesstringLive Room id
objectIdYesstringobjectId
objectNonceIdYesstringobjectNonceId
liveCookiesYesstringCookie from Enter-Live-Room

Request Example

 {
  "type": 10082,
  "liveId": "xxxxxxx",
  "objectId": "1xxxxx",
  "objectNonceId": "xx_xx_xx",
  "liveCookies": "xxxxxx"
 } 

Return Example

  {
    "data": {
      "status": 0,
      "desc": "",
      "data": []
    }
  }

Return Parameter Description

Parameter NameParameter TypeDescription
error_codeintError code
descriptionstringError Description
datajsonBusiness data

Remark