如何在agora中进行屏幕共享而不出现身份验证问题



我已经为视频通话实现了agora sdk 3.0。

现在我正试图让屏幕共享工作,但我一直收到中提供的错误下图(加入失败:NO_AUTHORIZED(。

共享屏幕时控制台的图片

屏幕共享代码示例:

async shareScreen() {
this.shareClient = AgoraRTC.createClient({
mode: 'rtc',
codec: 'vp8'
})
this.shareClient.init('xxxxxxxxxxxxxx', () => {
this.shareClient.join('same token video call started with', 'same room name of current outgoing video call', null, (uid) => {
const streamSpec = {
streamID: uid,
audio: false,
video: false,
screen: true
}
if (isFirefox()) {
streamSpec.mediaSource = 'window';
} else if (!isCompatibleChrome()) {
streamSpec.extensionId = 'minllpmhdgpndnkomcoccfekfegnlikg';
}
this.shareScreenStream = AgoraRTC.createStream(streamSpec);
// Initialize the stream.
this.shareScreenStream.init(() => {
// Play the stream.
this.shareScreenStream.play('renderer');
// Publish the stream.
this.shareClient.publish(this.shareScreenStream);
}, function(err) {
console.log(err);
});
}, function(err) {
console.log(err);
})
});
},

屏幕共享客户端应该使用基于UID和通道名称的唯一令牌。不是主要用户正在使用的。

相关内容

  • 没有找到相关文章

最新更新