我正在尝试向github的API提出请求。这是我的要求:
var url = 'https://api.github.com/' + requestUrl + '/' + repo + '/';
request(url, function(err, res, body) {
if (!err && res.statusCode == 200) {
var link = "https://github.com/" + repo;
opener(link);
process.exit();
} else {
console.log(res.body);
console.log(err);
console.log('This ' + person + ' does not exist');
process.exit();
}
});
这是我得到的回应:
Request forbidden by administrative rules. Please make sure your request has a User-Agent header (http://developer.github.com/v3/#user-agent-required). Check https://developer.github.com for other possible causes.
我过去使用过完全相同的代码,但它确实有效。请求不会抛出任何错误。现在我很困惑为什么我得到403(禁止)?任何解决方案?
答案 0 :(得分:11)
正如URL given in the response中所述,对GitHub API的请求现在需要User-Agent
标题:
所有API请求必须包含有效的
User-Agent
标头。没有User-Agent
标头的请求将被拒绝。我们要求您使用GitHub用户名或应用程序名称作为User-Agent
标头值。如果有问题,我们可以与您联系。
request
文档shows specifically如何在您的请求中添加User-Agent
标题:
var request = require('request');
var options = {
url: 'https://api.github.com/repos/request/request',
headers: {
'User-Agent': 'request'
}
};
function callback(error, response, body) {
if (!error && response.statusCode == 200) {
var info = JSON.parse(body);
console.log(info.stargazers_count + " Stars");
console.log(info.forks_count + " Forks");
}
}
request(options, callback);
答案 1 :(得分:0)
通过C#并使用
HttpClient
,您可以执行此操作(已在最新的.Net Core 2.1上进行了测试):
using (HttpClient client = new HttpClient())
{
client.DefaultRequestHeaders.Accept.Add( new System.Net.Http.Headers.MediaTypeWithQualityHeaderValue("application/json"));
client.DefaultRequestHeaders.UserAgent.TryParseAdd("request");//Set the User Agent to "request"
using (HttpResponseMessage response = client.GetAsync(endPoint).Result)
{
response.EnsureSuccessStatusCode();
responseBody = await response.Content.ReadAsByteArrayAsync();
}
}
谢谢