I'm trying to use the mojang api
to retrieve a users Minecraft UUID
from their Username this is what i have:
//Get Player UUID from name
$uuid = "Error obtaining uuid";
$json = file_get_contents('https://api.mojang.com/users/profiles/minecraft/' + $_GET['name']);
$obj = json_decode($json);
$uuid = $obj->id;
The variable $uuid
contains null and im not sure what im doing wrong i made sure i set the $_GET
parameters by going to player.php/?name=_Joosh
but still nothing?