Is it possible to display the presence of a Skype for Business user on a SharePoint Website? I am trying to create a contact page where users can contact of these employees from the webpage and to do this the presence needs to be displayed.
Asked
Active
Viewed 1,551 times
1 Answers
1
You can use Skype for web SDK to display presence of user on a web application (including SharePoint website). Keep in mind SDK is still in public preview. You can subscribe to user presence as follows:
sub = person1.status.subscribe();
person1.status.changed(onPresenceChanged);
function onPresenceChanged(presence) {
console.log("the contact is " + presence.availability);
}
Refer to this link for documentation.
To get the self presence use status
property of MePerson
object. Refer to this link for more details.
You can download the samples of SDK can be from here

Ankit Vijay
- 3,752
- 4
- 30
- 53
-
And here is a step by step example: https://www.matthewproctor.com/skype-web-sdk-presence-dashboard-revisited – Vladislav Jun 30 '16 at 06:39
-
But this will require a separate Azure app and a separate user authentication?... – Andrey Markeev Apr 24 '17 at 19:53