Для входа в систему с помощью Google
, Facebook
и т. Д. Вы можете использовать office-js-helpers
:
Установите его с помощью npm
:
npm install --save @microsoft/office-js-helpers
И в своем кодевнутри Office.initialize
:
Office.initialize = function (reason) {
//...
// This to inform the Authenticator to automatically close the authentication dialog once the authentication is complete.
if (OfficeHelpers.Authenticator.isAuthDialog()) return;
// register Google endpoint using
authenticator.endpoints.registerGoogleAuth('GOOGLE-CLIENT-ID');
authenticator
.authenticate(OfficeHelpers.DefaultEndpoints.Google)
.then(function (token) { console.log('_GOOGLE_TOKEN: ', token); })
.catch(OfficeHelpers.Utilities.log);
}
Вот и все!