PocketMine-MP 5.33.2 git-919492bdcad8510eb6606439eb77e1c604f1d1ea
Loading...
Searching...
No Matches
XboxAuthJwtBody.php
1<?php
2
3/*
4 * This file is part of BedrockProtocol.
5 * Copyright (C) 2014-2022 PocketMine Team <https://github.com/pmmp/BedrockProtocol>
6 *
7 * BedrockProtocol is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 */
12
13declare(strict_types=1);
14
15namespace pocketmine\network\mcpe\protocol\types\login\openid;
16
18
22final class XboxAuthJwtBody extends JwtBodyRfc7519{
24 public string $ipt; // Platform type
25
27 public string $pfcd; // PlayFab Creation Date / First PlayFab Title Account Login
28
30 public string $tid; // PlayFab Title ID
31
33 public string $mid; // the player's Minecraft ID, identifying the player in Minecraft's PlayFab namespace
34
36 public string $xid; // the player's Xbox Live User Id
37
39 public string $xname; // the player's Xbox Live gamertag
40
42 public string $cpk; // the public key that was used to sign the "client properties" token
43}