LookAtMySuitBot/js/node_modules/prismarine-auth/examples/xbox/simpleMsal.js

9 lines
184 B
JavaScript
Raw Normal View History

2023-12-24 20:08:39 -05:00
const { Authflow } = require('prismarine-auth')
const doAuth = () => {
const flow = new Authflow('test', './', { flow: 'msal' })
flow.getXboxToken().then(console.log)
}
doAuth()