Pages

2009年9月15日火曜日

HTTP_Request でアクセス先がリダイレクトを要求している場合への対応

RSSリーダー作成の時にちょっとはまったのでメモ。

$options = array(
    'timeout' => '10',  // タイムアウトの秒数指定
);
$req = new HTTP_Request('', $options);

上記から下記へ修正する事により対応可能となった。

$options = array(
    'timeout' => '10',  // タイムアウトの秒数指定
    'allowRedirects'    => true,
    'maxRedirects'      => 2,
);
$req = new HTTP_Request('', $options);

0 件のコメント:

コメントを投稿

Followers