6

我想使用 API 从我的 Stack Overflow 配置文件中以 JSON 格式检索信息。

所以我使用这个链接http://api.stackoverflow.com/1.0/users/401025/

但是当我发出请求时,我得到一个包含 JSON 数据的文件。如何使用 Ajax 处理该文件?

这是我的代码(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>

警报从未被触发,并且req.responseText似乎是空的。有任何想法吗?

4

3 回答 3

8

注意:您不能使用 Ajax 访问另一个域。(这称为同域策略。)

但是,StackOverflow API 支持 JSONP 回调,所以这里有一个解决方案:

通过<script>标签加载脚本。

创建一个这样做的函数:

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
}

设置回调函数:

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

加载它!

load_script('http://api.stackoverflow.com/1.0/users/401025/?jsonp=soResponse');
于 2010-12-29T11:35:05.920 回答
0

有一个新的 API(替换 USER_ID)

https://api.stackexchange.com/2.2/users/[USER_ID]?&site=stackoverflow
于 2020-04-18T16:02:11.227 回答
0

对于任何未来的读者:

我想在不使用 oAuth 和整个库的情况下获得我的声誉。感谢 Sebastien Horin 的回答,我可以轻松使用以下内容:

function get_reputation() {
    const xhttp = new XMLHttpRequest();
    const url = 'https://api.stackexchange.com/2.3/users/USER_ID?&site=stackoverflow';

    xhttp.open( "GET", url );
    xhttp.send();

    xhttp.onreadystatechange = function() {

        if(xhttp.readyState == 4 && xhttp.status == 200) {
            
            var json = JSON.parse(xhttp.responseText);
            
            console.debug( json );
            
        }       
    }
}

get_reputation();

注意:这使用 API v2.3。

于 2022-02-25T10:45:22.327 回答