2013-06-04 79 views
0

我收到錯誤「消息」 HTTP請求:「網址標頭未找到同時呼籲從Node.js的服務器的HTTP請求網址標頭未找到錯誤,同時呼籲從node.js的

要求就像是,首先我需要打一個盒子,其只接受Ajax請求,然後路線的實際服務。

代碼

var options = { 
    url: 'http://' + fullpath, 
    qs : params, 
    headers : { 
     Cookie : "COOKIE=" + my_cookie, 
     Origin: 'http://my_url', 
     "X-Requested-With": 'XMLHttpRequest' 
    }, 
    encoding : null, 

}; 


request.get(options, function (err, response, body) { 

} 

上述錯誤有什麼想法的快照?

日Thnx

回答

2

你不能傳遞一個Refererrequest.get,顯然在http://[fullpath]服務器期望它(也許是作爲一種安全的誤導形式的)。

嘗試增加一個:

headers : { 
    Cookie : "COOKIE=" + my_cookie, 
    Origin: 'http://my_url', 
    "X-Requested-With": 'XMLHttpRequest', 
    Referer : 'http://' + fullpath 
}, 
相關問題