当我使用以下命令时,我得到正确的JSON响应:
$ curl --data "regno=<reg-number>&dob=<dob>&mobile=<mobile>" https://vitacademics-rel.herokuapp.com/api/v2/vellore/login
当我使用以下Node JS代码时,我得不到回复:
var request= require('request');
var querystring=require('querystring');
var credentials={regno: '13bit0036', dob:25051995, mobile:9431222422};
console.log(querystring.stringify(credentials));
request.post({
url: 'https://vitacademics-rel.herokuapp.com/api/v2/vellore/login',
headers: {'Content-Type': 'application/x-www-form-urlencoded'},
body:querystring.stringify(credentials),
}, function(error, response, body){
if(error) {
console.log(error);
} else {
console.log(response.statusCode + '\n' , body);
}
});
答案 0 :(得分:1)
在您的请求中添加标题:
headers: {
'User-Agent':'Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:31.0) Gecko/20100101 Firefox/31.0',
'host': 'vitacademics-rel.herokuapp.com',
'Content-Type': 'application/x-www-form-urlencoded',
'Connection':'keep-alive'
},
您将根据需要获得回复:
lalit@ubuntu-0:~$ node requesting.js
regno=13bit0036&dob=25051995&mobile=9431222422
200
{"reg_no":"13BIT0036","dob":"25051995","mobile":"9431222422","campus":"vellore","status":{"message":"Successful execution","code":0}}
当你做curl时,它会默认添加这些标题。
每当您从客户端或库User-Agent
建立连接时,都应始终添加host
,Connection
标头。通常所有网站都需要这些标题。
要获取这些标头的值,请在浏览器中运行URL并按F12,在Net中读取浏览器发送的请求标头数据。在您的请求中输入相同的标头。