I've tried to only get "steamid" from AJAX(idk) link and I couldn't did it. Could you guys please help?
Link to find and get only "steamid" : here
I've tried this code:
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
var ba = this.responseText.split('\n'); var bubu = ba[ba.length-1]; console.log(ba);
}
};
xhttp.open("GET", "https://gamdom.com/user/%D0%BA%D1%94%CE%B7%CA%B8%E1%B5%98%E1%B6%A4%CB%A2%20gamdom.com.json", true);
xhttp.send();