0

我想使用 Twitter API 来获取用户的状态(和相关信息),我想得到的一件事是提及,所以我在搜索 API 中搜索 to:"user"。我使用这些行:

$url  = 'http://search.twitter.com/search.json?q=to%3A'.$screenname.'&include_entities=true&result_type=recent';
$json = file_get_contents($url);
$searchStats = json_decode($json, true);

在结果页面中(例如 Lady Gaga:http ://search.twitter.com/search.json?q=to%3Aladygaga&include_entities=true&result_type= recent )有一行写着 next_page,我怎样才能自动转到下一个每次翻页?只要生成的推文来自 2012 年 10 月 27 日之后,我怎么能说转到下一页?

我首先在 PHP 中执行此操作,因为这是我正在学习的语言,但我最终希望将其作为客户端操作,一旦我学习了一些 Ajax/Javascript(例如: http:/ /designwithpc.com/post/11924263674/get-twitter-profile-data-with-jquery-ajax),这可能吗?可以翻译成这样吗?

4

0 回答 0