找不到Skype网络sdk音频服务插件

时间:2018-05-23 09:36:09

标签: ionic-framework skype lync skype-for-business skypedeveloper

我在我的IONIC应用程序中集成了Skype Web SDK音频服务。一切正常,但我无法拨打电话。当我点击按钮拨打电话后,代码接到电话,我收到Beep声音,然后出现关于Pluginnotinstalled的错误。

 df.reset_index().values.tolist()

当我运行此代码时,我收到错误,插件未安装。没有关于他们想要什么插件的描述。

var conversation = application.conversationsManager.getConversation('tel:+XXXX');
conversation.selfParticipant.audio.state.when('Connected', function () {
    console.log('Connected to audio call');
});
conversation.state.changed(function (newValue, reason, oldValue) {
    console.log('Conversation state changed from', oldValue, 'to', newValue);
});
conversation.participants.added(function (participant) {
    console.log('Participant:', participant.displayName(), 'has been added to the conversation');
});
conversation.audioService.start().then(function() {
    console.log('The call has been started successfully');
}, function (error) {
    console.log('An error occured starting the call', error);
});

当我查看详细信息时,错误来自skype-web-sdk.js的以下代码

An error occured starting the call
Error: PluginNotInstalled
Exception — skype-web-sdk.js:20782
(anonymous function) — skype-web-sdk.js:35814
exec2 — skype-web-sdk.js:21498
exec — skype-web-sdk.js:21478
dequeue — skype-web-sdk.js:21253
process — skype-web-sdk.js:21274

1 个答案:

答案 0 :(得分:0)

您使用的是哪种浏览器? IE11和Safari都需要Skype for Business Web App插件,可以在这里找到:Getting started with Skype Web SDK development

Here您可以找到有关如何检查插件是否已安装的更多信息。