2
この質問について: Transfer/pass cookies from one request to another in nodejs/protractornode.jsからサーバーに送信されたリクエストを表示するにはどうすればよいですか?
もう1つあります。 nodejを介して実行している完全なリクエスト(ヘッダ+ボディ)をどのように見ることができますか?
この質問について: Transfer/pass cookies from one request to another in nodejs/protractornode.jsからサーバーに送信されたリクエストを表示するにはどうすればよいですか?
もう1つあります。 nodejを介して実行している完全なリクエスト(ヘッダ+ボディ)をどのように見ることができますか?
はい、あなたは...あなたは完全な応答本体から完全な要求にアクセスすることができますすることができます - response.request
私はあなたのように、コードを介してアクセスすることができます
IncomingMessage
ReadableState
headers(ResponseHeaders)
rawHeaders
request - //This is what you need
headers
body
body(Response Body)
下に示す一般的なフル応答構造を持っています下記に示す
var request = require("request");
var options = { method: 'POST',
url: 'http://1.1.1.1/login',
headers:
{ 'cache-control': 'no-cache',
'content-type': 'application/json' },
body: { email: '[email protected]', password: '[email protected]' },
json: true };
request(options, function (error, response, body) {
if (error) throw new Error(error);
// This will give you complete request
console.log(response.request);
//This gives you the headers from Request
console.log(response.request.headers);
});