公共头域
更新时间:2020-09-08
公共请求头域
公共头域 | 描述 | 是否必选 |
---|---|---|
host | 服务域名,目前固定为lss.bj.baidubce.com | 是 |
x-bce-date | 表示日期的字符串,符合API规范。 | 否 |
x-bce-request-id | 请求ID。 | 否 |
authorization | 包含Access Key与请求签名。 | 是 |
content-type | application/json; charset=utf-8。 | 是 |
content-length | 用于描述HTTP消息实体的传输长度the transfer-length of the message-body。 | 否 |
下面是一个标准的用户获取特定Stream信息时的请求头域内容:
GET /v5/domain/<playDomain>/app/<app>/stream/<stream> HTTP/1.1
host: lss.bj.baidubce.com
content-type: application/json
authorization: <bce-authorization-string>
LSS的API服务要求使用JSON格式(“创建文档”除外)的结构体来描述一个请求的具体内容。 下面是一个标准的用户创建通知时的请求消息体格式:
{
"description": "this is a demo session",
"preset": "live.rtmp_hls_forward_only"
}
LSS的API服务采用JSON格式的消息体作为响应返回的格式。下面是一个标准的用户查询特定Stream时的完整的请求返回示例:
{
"app": "demo_app",
"audit": "default",
"createTime": "2016-07-14T08:20:02Z",
"description": "",
"play": {
"flvUrl": "http://play.hello.com/test_app/test_stream.flv",
"rtmpUrl": "rtmp://play.hello.com/test_app/test_stream"
},
"playDomain": "demo.domain.com",
"preset": "live.rtmp_hls_forward_only",
"presets": {
"L0": "live.rtmp_hls_forward_only"
},
"publish": {
"pullUrl": "http://testpull.baidu.com",
"pushStream": "demo_stream",
"region": "bj"
},
"scene": "normal",
"securityPolicy": "default",
"sessionId": "p-ggps1qiiin8b0a3z",
"statistics": {
"bandwidthInBps": 0,
"playCount": 0
},
"status": "ONGOING"
"streamingStatus": "STREAMING"
}