3

我正在使用以下代码从 gitHub 获取存储库。当我从家庭网络使用它时,我可以检索存储库列表,但是如果我尝试从其他网络获取存储库,它会给我这个错误:'connect ECONNREFUSED'。我是nodejs的新手,所以仍然想知道如何解决这个问题。

有任何想法吗?

var https = require("https");
var userName='xyz';
var options = {
host :"api.github.com",
path : '/users/'+userName+'/repos',
method : 'GET'
}

var request = https.request(options, function(response){
var body = '';
response.on('data',function(chunk){
    body+=chunk;
});
response.on('end',function(){
    var json = JSON.parse(body);
    var repos =[];
    json.forEach(function(repo){
        repos.push({
            name : repo.name,
            description : repo.description
        });
    });
    console.log('the repos are  '+ JSON.stringify(repos));
});

});
request.on('error', function(e) {
console.error('and the error is '+e);
});
request.end();
4

2 回答 2

3

我想这样可以

var options = {

host:'api.github.com',

path: '/users/' + username+ '/repos',

method: 'GET',

headers: {'User-Agent':'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)'}

};
于 2014-05-10T11:01:42.800 回答
3

将您的选项更改为

var options = {

host:'api.github.com',

path: '/users/' + username+ '/repos',

method: 'GET',

headers: {'user-agent':'Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0)'}

};
于 2014-02-14T08:55:54.727 回答