-
Website
http://blog.backtype.com/ -
Original page
http://blog.backtype.com/2009/03/backtweets-search-links-on-twitter/ -
Subscribe
All Comments -
Community
-
Top Commenters
-
Web Design
5 comments · 1 points
-
RJBailey2008
5 comments · 2 points
-
Stephanie Booth
1 comment · 4 points
-
VelvetBlues
2 comments · 1 points
-
Taylor Davidson
2 comments · 16 points
-
-
Popular Threads
Keep it up!
Great tool, just working on a python wrapper, wanted to ask how the since_id parameter is parsed. The timestamp in the example on the api page (1300588696) seems to me to resolve to the 20th March 2011::
>>> d = datetime.fromtimestamp(1300588696)
>>> d
datetime.datetime(2011, 3, 20, 2, 38, 16)
Yet some manual testing shows me that 1300588696 does works as a timestamp (I get 88 results for www.yahoo.com). Can you tell me how you generate / parse / compare the timestamp?
Thanks,
James.
The since_id refers to the Twitter status id of the latest tweet. So this parameter can be used to returns tweets with ids greater than the given id.
Thanks for quick reply :)
James.