Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 1.47 KB

README.md

File metadata and controls

28 lines (18 loc) · 1.47 KB

xal-node

xal-node: Typescript implementation for Xbox Authentication Library (XAL)

Quality Gate Status Lines of Code Vulnerabilities Maintainability Rating

📚 Documentation: https://unknownskl.github.io/xal-node/

Other AppId and titleId's

It is possible to authenticate to different services using this library as well. Not all calls are supported but the authentication part is quite general. You can override the titleId like below:

const xal = xallib.Xal()
xal._app = {
    AppId: '<appId>',
    TitleId: '<titleId>',
    RedirectUri: '<redirectUri>',
}

Credits

Big thanks to @tuxuser and Team OpenXbox for creating the xal-rs library and giving the inspiration to port this over to Typescript