Netflix のサイトのチュートリアルを使用して、特定の映画の API クエリの gzip を正しくダウンロードしました。Netflix カタログ全体の gzip をダウンロードするようにコードを変更したところ、スクリプトが機能しなくなりました。
スクリプトを実行すると、API クエリは「?output=json;」で終了します。これは結果を返しません。末尾のセミコロンを手動で削除すると、ブラウザ ウィンドウ内にカタログがダウンロードされます。そのサイズのため、正確にはオプションではありません。
Netflix チュートリアル: http://developer.netflix.com/page/resources/sample_php
私の変更:
<?php
include ('OAuthSimple.php');
$apiKey = 'MY KEY';
$sharedSecret = 'MY SECRET';
/* THIS CODE BLOCK WORKS
$arguments = Array(
term=>'fargo',
expand=>'formats,synopsis',
max_results=> '1',
output=>'json'
); */
$arguments = Array(
output=>'json'
);
//$path = "http://api-public.netflix.com/catalog/titles"; // ORIGINAL CODE FOR MOVIE SEARCH
$path = "http://api-public.netflix.com/catalog/titles/streaming"; // Full Catalog Search
$oauth = new OAuthSimple();
$signed = $oauth->sign(Array(path=>$path,
parameters=>$arguments,
signatures=> Array('consumer_key'=>$apiKey,
'shared_secret'=>$sharedSecret
)));
// Now go fetch the data.
$curl = curl_init();
curl_setopt($curl,CURLOPT_URL,$signed['signed_url']);
curl_setopt($curl,CURLOPT_HTTPHEADER,array('Accept-Encoding: gzip'));
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
curl_setopt($curl,CURLOPT_SETTIMEOUT,2);
$buffer = curl_exec($curl);
if (curl_errno($curl))
{
die ("An error occurred:".curl_error());
}
curl_close($curl);
//$result = json_decode($buffer);
$fp = fopen('data.gzip', 'w');
fwrite($fp, $buffer);
fclose($fp);
?>
<p>
<b>Your signed URL:</b></br>
<?php print $signed['signed_url'] ?>;
</p>
<p>
And the output is:</br>
<pre>
<?php
print print_r($buffer); ?>
</pre>
</p>