Skip to content

Latest commit

 

History

History
67 lines (49 loc) · 2.56 KB

02-Custom_Azure_Application.md

File metadata and controls

67 lines (49 loc) · 2.56 KB

Custom Azure Application

This library allows you to create your own OAuth2.0 flow using a custom Azure application and let your users to signin with their Microsoft account and return their Xbox Live tokens. As you may know there is no public documentations as this authentication process is technically reserved for approved Microsoft's partners as it may compromise user's privacy. Please use it with caution and don't be a... You got it.

Steps

Usage with "code" exchange

First of all you must redirect your user to the login.live.com authentication page. This library exposes a method which will compute this URL for you.

import { live } from '@xboxreplay/xboxlive-auth';

const authorizeUrl = live.getAuthorizeUrl(
	'YOUR_CLIENT_ID',
	'XboxLive.signin XboxLive.offline_access',
	'code',
	'YOUR_REDIRECT_URI'
);

console.info(authorizeUrl);

Once authenticated, the user will be redirect to the specified redirectUri which will include a code in its query parameters that you'll use to request an access token. Please refer to this documentation for further information: https://docs.microsoft.com/en-us/advertising/guides/authentication-oauth-live-connect?view=bingads-13#request-accesstoken

import { live, xbl } from '@xboxreplay/xboxlive-auth';

const code = 'RETURNED_CODE';
const exchangeCodeResponse = await live.exchangeCodeForAccessToken(code);

const rpsTicket = exchangeCodeResponse.access_token;
const refreshToken = exchangeCodeResponse.refresh_token; // May be undefined

const userTokenResponse = await xbl.exchangeRpsTicketForUserToken(
	rpsTicket,
	'd' // Required for custom Azure applications
);

const XSTSTokenResponse = await xbl.exchangeTokenForXSTSToken(
	userTokenResponse.Token
);

// Handle expiration

const hasExpired = new Date() >= new Date(XSTSTokenResponse.NotAfter);

if (hasExpired === true && !!refreshToken) {
	const refreshResponse = await live.refreshAccessToken(
		refreshToken,
		'YOUR_CLIENT_ID',
		'XboxLive.signin XboxLive.offline_access',
		'YOUR_CLIENT_SECRET'
	);

	cosole.info(refreshResponse);
	// exchangeRpsTicketForUserToken(...)
	// exchangeTokenForXSTSToken(...)
	// etc.
}