I want to retrieve information from my Stack Overflow profile as JSON using the API.

So I use this link http:/api.stackoverflow.com/1.0/users/401025/.

But when I make the request I get a file containing the JSON data. How do I deal with that file using Ajax?

Here is my code (http://jsfiddle.net/hJhfU/2/):

<html>
 <head>
  <script>
   var req;

   getReputation();

   function getReputation(){
      req = new XMLHttpRequest();
      req.open('GET', 'http://api.stackoverflow.com/1.0/users/401025/');
      req.onreadystatechange = processUser;
      req.send();
   }

   function processUser(){       
       var res = JSON.parse(req.responseText);
       alert('test');      
   }
  </script>
 </head>

The alert is never fired and req.responseText seems to be empty. Any ideas?

link|improve this question

6  
Use jQuery. Manual AJAX makes people reading your code hate you and you are likely to make mistakes. – ThiefMaster Dec 29 '10 at 11:51
@ThiefMaster You're going to laugh when you see my updated answer. – Jacob Relkin Dec 29 '10 at 11:58
feedback

1 Answer

up vote 4 down vote accepted

Note: You cannot use Ajax to access another domain. (This is called the same-domain policy.)

However, the StackOverflow API supports JSONP callbacks, so here is a solution:

Load in the script via a <script> tag.

Create a function that does just that:

function load_script(src) {
   var scrip = document.createElement('script');
   scrip.src = src;
   document.getElementsByTagName('head')[0].appendChild(scrip);
   return scrip; //just for the heck of it
}

Set up the callback function:

function soResponse(obj) {
   alert(obj.users[0].reputation);
}

Load it!

load_script('http://api.stackoverflow.com/1.0/users/401025/?jsonp=soResponse');
link|improve this answer
ok, but when I run this it doen't do anything, jsfiddle.net/hJhfU/2 – ArtWorkAD Dec 29 '10 at 11:40
@ArtWorkAD First of all, Ajax doesn't work on jsFiddle. Second of all, see my updated answer. – Jacob Relkin Dec 29 '10 at 11:44
It seems that req.responseText is empty – ArtWorkAD Dec 29 '10 at 11:45
@ArtWorkAD See updated. – Jacob Relkin Dec 29 '10 at 11:58
what does that mean for me? Does that mean that I can not access my user profile using ajax? – ArtWorkAD Dec 29 '10 at 12:01
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.