Is there a default value for new_ max_id for Twitter?
I tried:
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=999999999999999999999999
I just want it to return exactly what it will return if you are not using max_id at all:
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=justinbieber&trim_user=true&count=200
Biebs is counting on you ...
I do not think there is a default. If you want to get the result as if you were not using max_id, do not send max_id. It is designed for pagination, so if you run
https://api.twitter.com/1/statuses/user_timeline.json?screen_name=justinbieber&trim_user=true&count=200&max_id=216942783313883136
anytime, you will get the same 200 results. If you care about the last 200, then do not worry about it.