查詢直播服務授權碼
描述
直播服務授權碼列表
請求引數
引數名 | 引數型別 | 是否必填 | 引數說明 |
---|---|---|---|
Action | String | 是 | 操作方法:ListServiceAuthCode,此引數為公共引數,不必放body裡面 |
Region | String | 是 | 機房標識,取值參見地域列表 |
LiveServiceId | String | 否 | 直播服務ID |
返回引數
名稱 | 型別 | 說明 |
---|---|---|
LiveServiceAuthCode | LiveServiceAuthCode | 由LiveServiceAuthCode組成的物件,返回授權碼資訊 |
LiveServiceAuthCode
應用安裝狀態 名稱 | 型別 | 說明 |
---|---|---|
Id | String | id |
LiveServiceId | String | 直播服務ID |
AuthCode | String | 授權碼 |
AuthDesc | String | 授權碼說明 |
CreateTime | Long | 建立時間 |
請求示例
post https://api.yunpanel.com/v2/?Action=ListServiceAuthCode
{
"Region":"xxxxxx",
"LiveServiceId":"xxxxxxxx"
}
返回示例
{
"code": 10000,
"message": "",
"data": {
"List":[{
"Id": "xxxxxx",
"LiveServiceId": "xxxxxx",
"AuthCode": "xxxxxx",
"AuthDesc": "xxxxxx",
"CreateTime": xxxxxx
}]
}
}