I'm using Zend_Service_Twitter
to run a Twitter search and return json. I'm having a problem with the since_id
values I'm getting back. When I print_r()
the search results, I get back the following:
...
[since_id] => -2017847207
[refresh_url] => ?since_id=6801825835&q=myTwitterSearchQuery
...
The [since_id]
value is different to the querystring since_id
- this means that the next search I run using the stored since_id doesn't return anything.
Anyone have suggestions on what might be causing this?
Thanks.