request
デフォルトでリダイレクトを取得し、デフォルトで 10 回のリダイレクトを取得できます。これはdocsで確認できます。これの欠点は、デフォルトのオプションでは、取得した URL がリダイレクトされたものか元の URL かがわからないことです。
例えば:
request('http://www.google.com', function (error, response, body) {
console.log(response.headers)
console.log(body) // Print the google web page.
})
出力を与える
> { date: 'Wed, 22 May 2013 15:11:58 GMT',
expires: '-1',
'cache-control': 'private, max-age=0',
'content-type': 'text/html; charset=ISO-8859-1',
server: 'gws',
'x-xss-protection': '1; mode=block',
'x-frame-options': 'SAMEORIGIN',
'transfer-encoding': 'chunked' }
ただし、オプションfollowRedirect
をfalseとして指定すると
request({url:'http://www.google.com',followRedirect :false}, function (error, response, body) {
console.log(response.headers)
console.log(body)
});
それは与えます
> { location: 'http://www.google.co.in/',
'cache-control': 'private',
'content-type': 'text/html; charset=UTF-8',
date: 'Wed, 22 May 2013 15:12:27 GMT',
server: 'gws',
'content-length': '221',
'x-xss-protection': '1; mode=block',
'x-frame-options': 'SAMEORIGIN' }
<HTML><HEAD><meta http-equiv="content-type" content="text/html;charset=utf-8">
<TITLE>302 Moved</TITLE></HEAD><BODY>
<H1>302 Moved</H1>
The document has moved
<A HREF="http://www.google.co.in/">here</A>.
</BODY></HTML>
したがって、リダイレクトされたコンテンツの取得について心配する必要はありません。followRedirect
ただし、リダイレクトされているか、false に設定されていないかを知りたい場合はlocation
、応答のヘッダーを確認してください。