获取直播间自定义观看账号或评论限制的配置信息。
说明
如需获取公开、密码、白名单或手机号的观看限制配置信息,可调用 GetViewingRestrictionInfo 接口。
请求频率:单用户请求频率限制为 120 次/分钟。
下表仅列出该接口特有的请求参数和部分公共参数。更多信息详见公共参数。
参数 | 类型 | 是否必选 | 示例值 | 描述 |
---|---|---|---|---|
Action | String | 是 | GetCustomViewingRestrictionInfoAPI | 接口名称。当前 API 的名称为 GetCustomViewingRestrictionInfoAPI 。 |
Version | String | 是 | 2020-06-01 | 接口版本。当前 API 的版本为 2020-06-01 。 |
ActivityId | Long | 是 | 175980616 | 直播间 ID。您可以通过 ListActivityAPI 接口查询 ID。 |
ViewingRestriction | Integer | 否 |
| 指定需要查询的自定义观看限制。支持以下取值,默认取值为
|
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
ActivityId | Long | 175980616 | 直播间 ID |
CustomViewingRestriction | Array of CustomViewingRestriction | - | 自定义观看限制的配置信息 |
MainViewingRestrictionButtonTitle | String | 自定义观看1 | 主登录方式的按钮文案 |
SubViewingRestrictionButtonTitle | String | 自定义观看2 | 次登录方式的按钮文案 |
参数 | 类型 | 示例值 | 描述 |
---|---|---|---|
ViewingRestrictionType | Integer |
| 自定义观看限制类型。支持以下取值。
|
CustomApp | String | example2 | 登录账号 App。您的自有账号系统名称。 |
CustomUrl | String | https://www.example2.com | 登录链接。您的自有账号系统登录页面的链接。 |
SecretKey | String | xxxxx2 | 自定义登录的密钥。根据 CustomApp 和 CustomUrl 自动生成,用于计算校验签名( Sign 值),计算方法详见回调参数。 |
ErrorRedirectUrl | String | https://www.error.com | 自定义鉴权校验失败后,进入的鉴权校验失败页面的地址。该地址包含协议头。 |
GET https://livesaas.volcengineapi.com/?Action=GetCustomViewingRestrictionInfoAPI&Version=2020-06-01&ActivityId=175980616&ViewingRestriction=0
{ "ResponseMetadata": { "Action": "GetCustomViewingRestrictionInfoAPI", "Region": "cn-north-1", "RequestId": "202303101311119BAEE6215ADC71105DF5", "Service": "livesaas", "Version": "2020-06-01", "SystemTime": 1685969459 }, "Result": { "ActivityId": 175980616, "CustomViewingRestriction": [ { "CustomApp": "example1", "CustomUrl": "https://www.example1.com", "SecretKey": "xxxxx1", "ViewingRestrictionType": 1, "ErrorRedirectUrl": "https://www.error.com" }, { "CustomApp": "example2", "CustomUrl": "https://www.example2.com", "SecretKey": "xxxxx2", "ViewingRestrictionType": 2, "ErrorRedirectUrl": "https://www.error.com" } ], "MainViewingRestrictionButtonTitle": "自定义观看1", "SubViewingRestrictionButtonTitle": "自定义观看2" } }
访问公共错误码获取详细信息。