js-skype-status: fixed a bug where subscription to the current users status wouldn't work (#553)
This commit is contained in:
parent
74b748c9e2
commit
711cae3666
|
@ -28,6 +28,7 @@ js-skype-status|[Vincent Biret](https://github.com/baywet)
|
||||||
|
|
||||||
Version|Date|Comments
|
Version|Date|Comments
|
||||||
-------|----|--------
|
-------|----|--------
|
||||||
|
1.2|July 4th, 2018|Fixed a bug when subscribing to the current user's status
|
||||||
1.1|June 22nd, 2018|Upgraded to SPFX 1.5
|
1.1|June 22nd, 2018|Upgraded to SPFX 1.5
|
||||||
1.0|December 1, 2017|Initial release
|
1.0|December 1, 2017|Initial release
|
||||||
|
|
||||||
|
@ -51,7 +52,7 @@ Take note of the `application ID`, we'll need it later. Click on `required permi
|
||||||
![skype permission](./images/5.PNG)
|
![skype permission](./images/5.PNG)
|
||||||
Click on `add` then `select an API` and select `Skype for Business`.
|
Click on `add` then `select an API` and select `Skype for Business`.
|
||||||
![skype scopes](./images/6.PNG)
|
![skype scopes](./images/6.PNG)
|
||||||
Select under `delegated permissions` both `Read/Write Skype user contacts and groups` and `Read/Write Skype user information (preview)`, then click `select`. Finish by clicking `Done`.
|
Select under `delegated permissions` both `Read/Write Skype user contacts and groups`, `Read/Write Skype user information (preview)`, `Receive conversation invites (preview)` (the receive conversation permission is required to get access to the mePerson object and have access to the current user's presence information) then click `select`. Finish by clicking `Done`.
|
||||||
![grant permission](./images/7.PNG)
|
![grant permission](./images/7.PNG)
|
||||||
Don't forget to click on `Grant permissions` and `yes`.
|
Don't forget to click on `Grant permissions` and `yes`.
|
||||||
|
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 70 KiB After Width: | Height: | Size: 10 KiB |
|
@ -22,8 +22,11 @@ export class SkypeForBusinessCommunicationService implements ICommunicationServi
|
||||||
const personsAndGroupsManager: any = skypeApp.personsAndGroupsManager;
|
const personsAndGroupsManager: any = skypeApp.personsAndGroupsManager;
|
||||||
const mePerson: any = personsAndGroupsManager.mePerson;
|
const mePerson: any = personsAndGroupsManager.mePerson;
|
||||||
if (SkypeForBusinessCommunicationService.webPartContext().pageContext.user.email === userEmail) {
|
if (SkypeForBusinessCommunicationService.webPartContext().pageContext.user.email === userEmail) {
|
||||||
Log.info(Constants.ErrorCategory, `Bypassed skype subscription for current user ${userEmail}`);
|
mePerson.status.changed((newStatus: string, reason: string, oldStatus: string) => {
|
||||||
handler("Online", undefined, mePerson.displayName());
|
Log.info(Constants.ErrorCategory, `${mePerson.displayName()} status changed from ${oldStatus} to ${newStatus} because ${reason}`);
|
||||||
|
handler(newStatus, oldStatus, mePerson.displayName());
|
||||||
|
});
|
||||||
|
mePerson.status.subscribe();
|
||||||
} else {
|
} else {
|
||||||
const query: any = personsAndGroupsManager.createPersonSearchQuery();
|
const query: any = personsAndGroupsManager.createPersonSearchQuery();
|
||||||
query.text(userEmail);
|
query.text(userEmail);
|
||||||
|
|
Loading…
Reference in New Issue