I try to get tweets from user's home using home method.
http://api.twitter.com/version/statuses/home_timeline.format
If I use paging and set as the following..
Example.
paging.setSinceId(000009L);
What would be the expected result returned from API ?
in my home, there will be like following tweets.
000050( The most recent one)
....
000040
000039
.....
000023
000022
000021
000020
......
000013
000012
000011
000010
......
000003
000002
000001
Actually, I should receive Tweets ( 000010 to 000020 ) . right?
but, when I called the API, it seems like the returned result is ( 000030 to 000050).
Is it the correct way of working API ? or do I miss something?
If I want to get Tweets ( 000010 to 000020 ) , how can I do it?
PS: I use Twitter4j Lib. thanks.