Details
-
Type:
Bug
-
Status:
Resolved
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.9.1
-
Fix Version/s: 1.9.3
-
Component/s: Zend_Service_Twitter
-
Labels:None
Description
A few weeks ago the ids of tweets got bigger than 2^32.
The problem is that the since_id parameter (e.g. in statusFriendsTimeline) is converted to int. But there's no support in PHP for integers of that size.
Maybe we should simply use strings and check if the string only contains digits.
That sounds like a good plan. I'll take a look into a patch in the next few days.