Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Twitter 的新 max_id 参数是否有默认值?
我试过了:
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=justinbieber&trim_user=true&count=200&max_id=false
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=justinbieber&trim_user=true&count=200&max_id=null
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=justinbieber&trim_user=true&count=200&max_id=9999999999999999999999
如果您根本不使用 max_id,我只是希望它准确地返回它会返回的内容:
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=justinbieber&trim_user=true&count=200
比布斯指望着你……
我不认为有默认值。如果您希望结果与未使用 max_id 一样,则不要发送 max_id。它的目的是分页,所以如果你跑
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=justinbieber&trim_user=true&count=200&max_id=216942783313883136
在任何时候,您都将获得相同的 200 个结果。如果您只关心最近的 200 条,请不要理会它。