'How to get URL from kinesis video streams with GetHLSStreamingSessionURL
I am trying to get a URL to view my video on kinesis video streams with getHLSStreamingSessionURL.
On postman I have created a POST call to 'https://endpoint/getHLSStreamingSessionURL
On postman I get a 200 response but the response body is :
{
"Output": {
"__type": "com.amazon.coral.service#UnknownOperationException"
},
"Version": "1.0"
}
I expect the response to return a HLS url.
And here is my request body:
{
"ContainerFormat": "FRAGMENTED_MP4",
"DiscontinuityMode": "ON_DISCONTINUITY",
"DisplayFragmentTimestamp": "ALWAYS",
"Expires": 300,
"HLSFragmentSelector": {
"FragmentSelectorType": "PRODUCER_TIMESTAMP",
"TimestampRange": {
"EndTimestamp": 1646055362163,
"StartTimestamp": 1646055362143
}
},
"PlaybackMode": "ON-DEMAND",
"StreamName": "DEV_videoStreamTest"
}
Can anyone suggest what is wrong with my http request and explain what exactly this response means?
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|
