技术:nodejs server/express 4 框架
在发出 localhost GET 请求时,我正在努力寻找绕过护照身份验证的方法。响应的“正文”部分是登录页面而不是数据。我想直接查询数据而不重定向到登录,因为调用是在服务器端进行的。
这是我的代码:
request({
url: "http://localhost:3000/data/getMyData/"+dataName,
method:"GET",
},
function(error,response,body){
console.log(body)
}
)