对于类型错误,我在下面做错了什么?以及我应该如何在下面的代码中将视频流写入端点:
我有以下代码
successCallback(stream){
AWS.config.region = 'us-east-1'; // Region
AWS.config.credentials = new AWS.CognitoIdentityCredentials({
IdentityPoolId: 'xxxxxxxxxxx',
});
AWS.config.apiVersions = {
kinesisvideo:'2017-09-30'
}
var kinesisvideo = new AWS.KinesisVideo();
//Get stream
var params = {
APIName: "PUT_MEDIA",
StreamName: this.KINESIS_STREAM_NAME
};
kinesisvideo.getDataEndpoint(params,function(err,data){
if(err)
console.log(err,err.stack);
else{
console.log("Kinesis Stream Response ---------");
console.log(data);
// data.DataEndpoint
//How should i send the stream to endpoint?
}
});
}
我收到一个错误
TypeError AWS.KinesisVideo 不是构造函数
在
var kinesisvideo = new AWS.KinesisVideo();
另外,一旦我得到视频流端点,我应该如何将我的数据写入端点?aws 文档中没有提供相同的文档。
谢谢。