1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
|
from xbox.webapi.api.provider.account.models import (
ChangeGamertagResult,
ClaimGamertagResult,
)
from xbox.webapi.api.provider.baseprovider import BaseProvider
class AccountProvider(BaseProvider):
BASE_URL_USER_MGT = "https://user.mgt.xboxlive.com"
BASE_URL_ACCOUNT = "https://accounts.xboxlive.com"
HEADERS_USER_MGT = {"x-xbl-contract-version": "1"}
HEADERS_ACCOUNT = {"x-xbl-contract-version": "2"}
async def claim_gamertag(self, xuid, gamertag, **kwargs) -> ClaimGamertagResult:
"""
Claim gamertag
XLE error codes:
400 - Bad API request
401 - Unauthorized
409 - Gamertag unavailable
429 - Too many requests
200 - Gamertag available
Args:
xuid (int): Your xuid as integer
gamertag (str): Desired gamertag
Returns: ClaimGamertagResult
"""
url = self.BASE_URL_USER_MGT + "/gamertags/reserve"
post_data = {"Gamertag": gamertag, "ReservationId": str(xuid)}
resp = await self.client.session.post(
url, json=post_data, headers=self.HEADERS_USER_MGT, **kwargs
)
try:
return ClaimGamertagResult(resp.status_code)
except ValueError:
resp.raise_for_status()
async def change_gamertag(
self, xuid, gamertag, preview=False, **kwargs
) -> ChangeGamertagResult:
"""
Change your gamertag.
XLE error codes:
200 - success
1020 - No free gamertag changes available
Args:
xuid (int): Your Xuid as integer
gamertag (str): Desired gamertag name
preview (bool): Preview the change
Returns: ChangeGamertagResult
"""
url = self.BASE_URL_ACCOUNT + "/users/current/profile/gamertag"
post_data = {
"gamertag": gamertag,
"preview": preview,
"reservationId": int(xuid),
}
resp = await self.client.session.post(
url, json=post_data, headers=self.HEADERS_ACCOUNT, **kwargs
)
try:
return ChangeGamertagResult(resp.status_code)
except ValueError:
resp.raise_for_status()
|