I have this simple script:
ids="22656"
url = "http://api.stackoverflow.com/1.0/users/"+ids+"/timeline";
console.log( url );
xmlhttp = new XMLHttpRequest();
xmlhttp.open(“GET”, url ,true);
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4) {
console.log( xmlhttp.responseText );
}
xmlhttp.send( null );
};
But I don't quite understand why I'm getting:
Uncaught SyntaxError: Unexpected token ILLEGAL
Can someone shed some light on this?
The quotes around GET are not proper. You must use standard single or double quotes for strings.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With