I just logged what I think is a major bug 436.
Any body else can verify this problem?
It just started happening about 30 minutes ago.
I've had to shut down my word game apps since they do auto replies or
auto DM's in response to user submissions.

All my PHP apps just stopped working properly because the getReplies
with
the since parameter is returning messages that are older than the
since
date. This is a big problem since it causes tons of bogus messages to
be
sent to all my users over and over again. I dont know how long this
has
been happening but at least 30 minutes.

PHP examples ...

getReplies(1239225832,null,1) gets back [created_at] => 1239225827
which
was already processed. see below in trace of returned array.

  echo "Getting replies since: ".$replysince.' <br>';
  $a=Array(0);
  $page=1;
  $nreplies=0;
  while (count($a)>0)
  {
   $a=$t->getReplies($replysince,null,$page);
   if ($a[$i]['created_at']>$replysince) $replysince=$a[$i]
['created_at'];
   ...

Getting replies since: 1239225832
getreplies : Array ( [0] => Array ( [id] => 1479274850 [created_at] =>
1239225827 [text] => @Tweet_Quiz pants [source] => web [user] => Array
(
[id] => 8394312 [name] => Melange [screen_name] => Melangerie
[description]
=> [location] => GA [url] => [protected] => [followers_count] => 220
[profile_image_url] =>

getreplies : Array ( [0] => Array ( [id] => 1479274850 [created_at] =>
1239225827 [text] => @Tweet_Quiz pants [source] => web [user] => Array
(
[id] => 8394312 [name] => Melange [screen_name] => Melangerie
[description]
=> [location] => GA [url] => [protected] => [followers_count] => 220
[profile_image_url] =>

Reply via email to