Twitter 検索 API をスクレイピングし、URL の結果をツイートで返すスクリプトがあります。ただし、現在、結果は返されていません。どうしてこれなの?
$search = json_decode(file_get_contents('https://search.twitter.com/search.json?q=%23google%20vine.co%2Fv%2F&result_type=recent&include_entities=1&rpp=10'));
foreach($search->results as $result) {
echo $result->urls->expanded_url.'<br>';
}
どうすればこれを機能させることができますか?