Home:ALL Converter>integrate skype for business with my web app

integrate skype for business with my web app

Ask Time:2021-08-17T20:44:00         Author:Pratik Gupta

Json Formatter

I want to integrate skype for business with my web app, just want to open the app on button click.

There is a way to open a chat window with some specific user via below line in js:

document.getElementById('skypeChat').href="im:<sip:"+textEmail+">";

but i want to only open the app and land on the home screen of the app and not to initate any chat.

Author:Pratik Gupta,eproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/68817591/integrate-skype-for-business-with-my-web-app
Peter B :

I managed to get it working by setting textEmail to the user's own email address.\nFor example, if your application knows that the user is using SfB address [email protected], then this should (could?) open SfB on the starting page:\nconst textEmail = "[email protected]";\ndocument.getElementById('skypeChat').href="im:<sip:" + textEmail + ">";\n\nPresumably this happens because they can't chat with themselves, and no error is shown - or at least that is what happens for me; your mileage may vary.",
2021-08-17T13:49:47
yy