用於今天上午工作,然後突然以下調用Twitter的user_timeline.json只顯示最新的tweet,即使數= 5
$get_tweets = $connection->get("https://api.twitter.com/1.1/statuses/user_timeline.json?screen_name=" . $twitter_user_id . "&count=" . $tweets_to_display . "&include_rts=" . $include_rts . "&exclude_replies=" . $exclude_replies);
返回$ get_tweets只有一個結果,即使我設定計數下面的PHP代碼到5,我有數百個推文! 我看到的唯一原因是之前的推文是15天前,但是我想要在不到X天內發佈最新的5條推文而不是最新的5條推文。
該圖書館是順便提供的https://github.com/andrewbiggart/latest-tweets-php-o-auth/。
編輯:
$include_rts = false
$exclude_replies = false;
include_rts和exclude_replies都設置爲false,更改它們沒有結果。不過,我看不出如何改變他們的價值觀影響計數的輸出(我甚至把計數= 100仍然有1鳴叫!)。 –
我很久以前使用Twitter API。我沒有遇到像你一樣的情況。可能是你做錯了。不要在計數中放置太多的值,因爲它會花費太多時間,並且默認設置下的最大執行時間只有幾秒。 –