Opening Lync 2013 Mobile Client from Third Party iOS App

有些话、适合烂在心里 提交于 2020-01-01 05:06:09

问题


I have installed Lync 2013 mobile client in iOS and I know that executing lync:// url scheme like below

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"lync://"]];

will open the installed Lync app but I would like to know more about the other URL parameters that can be used in custom url scheme for performing other actions like for example

  1. Automatic login using the credentials
  2. Open a meeting URL

回答1:


It doesn't appear to be possible at this point.

Somebody asked a question on Technet really closely related to yours two years ago and got an answer that URL parameters are not supported with the Lync client on iOS.

And here's another question asking about parameters with pretty much the same result.

Sounds like you should file a feature request with Microsoft to make it happen.




回答2:


MSDN documentation lists all the scheme URIs and the parameters that you can pass.

For Lync 2010, you can use:

Lync://

For Lync 2013, you can use any of the following:

Tel:+14255550101 -> Opens a phone-only view with +14255550101.

Callto:tel:+ 14255550101 -> Opens a phone-only view with +14255550101.

Callto:sip:name@example.com -> Opens a phone-only view with name@example.com

sip:name@example.com -> Opens a Conversation window with name@example.com

conf:sip:https://meet.contoso.com/name/7322994

Full details can be found on MSDN here




回答3:


[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sip://"]];


来源:https://stackoverflow.com/questions/19221088/opening-lync-2013-mobile-client-from-third-party-ios-app

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!