1
twitteroauth的一直都非常好了到現在爲止,但我無法收集所有特定用戶的追隨者。使用亞伯拉罕的twitteroauth的:在「追隨者/ IDS」 next_cursor始終爲0
例如:
$method = 'followers/ids';
$params = array("screen_name"=>"governoromalley","cursor"=>"-1");
print_r($conn->get($method));
返回/打印對象聲稱只是0 next_cursor有:
stdClass Object ([previous_cursor_str] => 0 [next_cursor] => 0 [ids] =>
Array ([0] => 353642204 [1] => 98012791 [2] => 72607824 [3] =>...
但是,通過http://dev.twitter.com OAuth的工具冰壺時,我得到顯示next_cursor有,但我似乎無法通過PHP SDK獲取它。
{"previous_cursor_str":"0","next_cursor":1380213447767347311,"ids":
[23639237,324619439,282668815,...
我該如何解決這個難題?我願意根據需要做任何愚蠢的黑客攻擊。
感謝您的幫助!