mirror of
https://github.com/MeowLynxSea/Proksea.git
synced 2025-07-10 19:34:41 +00:00
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
const { Authflow } = require('prismarine-auth')
|
|
|
|
const doAuth = () => {
|
|
const flow = new Authflow('test', './', { flow: 'msal' })
|
|
flow.getXboxToken().then(console.log)
|
|
}
|
|
|
|
doAuth()
|