Lync SDK 2013 - 加入会议抛出'价值不在预期范围内。'

问题描述 投票:2回答:1

我正在尝试在Lync SDK 2013中运行“加入会议示例”。示例中的代码会抛出异常“值不在预期范围内”。

string conferenceUrl = MeetUrl.Text; // in the form of "conf:sip:[email protected];gruu;opaque=app:conf:focus:id:4FNRHN16";
IAsyncResult ar = Automation.BeginStartConversation(conferenceUrl, 0, StartConversation_Callback, null);

我正在以“conf:sip:[email protected]; gruu; opaque = app:conf:focus:id:4FNRHN16”的格式传递ConferenceUrl。它不断抛出同样的错误。我错过了什么。

sdk lync-2013
1个回答
3
投票

这是SDK中的一个错误。如果你在"?"的末尾添加一个conference uri,你的代码就可以了。

conf:sip:[email protected];gruu;opaque=app:conf:focus:id:HELLOWORLD?
© www.soinside.com 2019 - 2024. All rights reserved.