Last active
April 8, 2021 06:23
-
-
Save frdnrdb/fcfefbb2556b38cf4a41768818e3ac5f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const msal = require('@azure/msal-node'); | |
const app = someServer(); | |
const authenticator = new msal.ConfidentialClientApplication({ | |
auth: { | |
clientId: process.env.AZURE_CLIENT_ID, | |
clientSecret: process.env.AZURE_CLIENT_SECRET, | |
authority: `https://login.microsoftonline.com/${process.env.AZURE_TENANT_NAME}`, | |
}, | |
system: { | |
loggerOptions: { | |
loggerCallback(loglevel, message, containsPii) { | |
console.log(message); | |
}, | |
piiLoggingEnabled: false, | |
logLevel: msal.LogLevel.Error | |
} | |
} | |
}); | |
const requestObject = { | |
scopes: ['user.read'], | |
redirectUri: `${HOST}/redirect` | |
}; | |
app.get('/login', async (req, res) => { | |
const loginUrl = await authenticator.getAuthCodeUrl(requestObject); | |
res.redirect(loginUrl); | |
}) | |
app.get('/redirect', async (req, res) => { | |
const payload = await authenticator.acquireTokenByCode( | |
Object.assign(requestObject, { | |
code: req.query.code | |
} | |
); | |
}) | |
/* | |
redirect payload: | |
{ | |
authority, | |
uniqueId, | |
tenantId, | |
scopes, | |
account: { | |
homeAccountId, | |
environment, | |
tenantId, | |
username, // email | |
localAccountId, | |
name, | |
idTokenClaims: { idToken-JWT-content } | |
}, | |
idToken: JWT, | |
idTokenClaims: { idToken-JWT-content } | |
accessToken: JWT, | |
fromCache: false, | |
expiresOn: 2021-04-07T10:22:18.000Z, | |
extExpiresOn: 2021-04-07T11:22:17.000Z, | |
familyId: '', | |
tokenType: 'Bearer', | |
state: '', | |
cloudGraphHostName: '', | |
msGraphHost: '' | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment