6

我正在使用 Skype web sdk 为 Skype for business online 工作。我正在尝试创建多方视频对话,即视频会议。

我正在使用下面的代码来创建对话。

var conversation = app.conversationsManager.createConversation(); //created conversion
//self video listener
conversation.selfParticipant.video.state.changed(function (newState, reason, oldState) {
    notify("selfParticipant.video.state : "+newState)
});
//self audio listener
conversation.selfParticipant.audio.state.changed(function (newState, reason, oldState) {
    notify("selfParticipant.audio.state :"+newState);
});
//listner for conversion state
conversation.state.changed(function (newValue, reason, oldValue) {
    notify("conversation.state : "+newValue)
});

//add participants
addParticipants(conversation,sip_uris); //Added participants

notify("conversation.videoService.maxVideos : "+conversation.videoService.maxVideos());
notify("conversation.videoService.videoMode : "+conversation.videoService.videoMode());
//start video service
conversation.videoService.start().then(function () {
    notify("Video conference successfully started : "+conversation.uri());
},function (error) {
    notify("Video conference start failed : "+error);
});

以上代码的日志如下

1:26:51 PM : selfParticipant.video.state : Disconnected
1:26:51 PM : selfParticipant.audio.state :Disconnected
1:26:51 PM : conversation.state : Created
1:26:51 PM : conversation.videoService.maxVideos : null
1:26:51 PM : conversation.videoService.videoMode : ActiveSpeaker
1:26:52 PM : conversation.state : Conferenced
1:26:53 PM : selfParticipant.audio.state :Connecting
1:26:53 PM : selfParticipant.video.state : Connecting
1:27:04 PM : selfParticipant.audio.state :Connected
1:27:04 PM : selfParticipant.video.state : Disconnected
1:27:04 PM : Video conference successfully started

我有两个问题。

  1. conversation.videoService.maxVideos在 chrome()Version 56.0.2924.87(64 位)上显示为null 。

  2. selfParticipant.video.state得到Disconnected,但selfParticipant.audio.state很好(更改为connected)。

编辑: Skype Web SDK 日志在这里

任何帮助表示赞赏。

4

1 回答 1

1

确保您使用此站点的“公共预览密钥”:https ://msdn.microsoft.com/en-us/skype/websdk/docs/apiproductkeys

通常,您在使用 GA-Key 时会收到“命令禁用”错误。

于 2017-05-02T07:48:44.647 回答