我正在使用 jtwitter 来获取用户的最新提及(使用下面的代码),但我得到的最早提及是 20 天。
twitter.getMentions();
我得到了正确的时间表和 DM。
有没有人以前见过这个问题并且可以帮助我解决这个问题?
I set the max result to 20 and it solved
i don't know why that problem even accured because the default is 20 anyway
据我所知twitter.getMentions()
,默认情况下返回最后 20 次更新。您可以使用方法增加此数字setMaxResults
。您也可以使用 setSinceDate 和 setSinceId 方法。
更多你可以在这里找到。