PHP code example of bigpino67 / oauth2-xblive
1. Go to this page and download the library: Download bigpino67/oauth2-xblive library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
bigpino67 / oauth2-xblive example snippets
use BigPino67\OAuth2\XBLive\Client\Provider;
use BigPino67\OAuth2\XBLive\Client\Provider\Enum\XBLivePlatformEnum;
use BigPino67\OAuth2\XBLive\Client\Provider\Enum\XboxOneTitleEnum;
$provider = new BigPino67\OAuth2\XBLive\Client\Provider\XBLive([
'clientId' => '{YOUR_CLIENT_ID}',
'clientSecret' => '{YOUR_CLIENT_SECRET}',
'redirectUri' => '{YOUR_LOGIN_REDIRECT_URI}',
'logoutRedirectUri' => '{YOUR_LOGOUT_REDIRECT_URI}',
]);
if(isset($_POST['code']) && isset($_POST['state']))
{
if($_POST['state'] == $provider->getState())
{
$msaToken = $provider->GetAccessToken('authorization_code', [
'scope' => $provider->scope,
'code' => $_POST['code']
]);
$xasuToken = $provider->getXasuToken($msaToken);
$xstsToken = $provider->getXstsToken($xasuToken);
$profilesProvider = new Provider\Profiles\ProfilesProvider($xstsToken);
$profile = $profilesProvider->getLoggedUserProfile();
$achivementsProvider = new Provider\Achievements\AchievementsProvider($xstsToken);
$sotAchievements = $achivementsProvider->getAchievements(XboxOneTitleEnum::SeaOfThieves);
echo "<pre>";
print_r($sotAchievements);
echo "<pre>";
}
else
{
echo 'Invalid state';
}
}
else
{
echo '<a href="'.$provider->getBaseAuthorizationUrl().'">Login</a>';
}