我试图使用mojang Yggdrasil api验证我的自我,但它给我这个错误,api是https://wiki.vg/Authentication

var jsonTest = '{"agent": { "name": "Minecraft", "version": 1 }, 
"username": "test", "password": "password"}';

var url = "https://authserver.mojang.com/authenticate";

var req = new XMLHttpRequest();
req.open("POST", url, true);
req.setRequestHeader("Content-type", "application/json");
req.send(jsonTest);

它给我这个错误:无法加载资源:服务器响应状态为403(禁止)