Open GoogleCodeExporter opened 8 years ago
Never mind, just saw issue #30.
Original comment by matthew....@gmail.com
on 5 Jul 2009 at 9:40
Yes, i've the same issue with my PHP script
(PHP 5.2)
The space, is the right solution.
Original comment by capri...@gmail.com
on 12 Jul 2009 at 4:35
I've fixed this problem in the Twitter class, just delete the last line of the
status() method and replace it with this:
$keys = array_keys($postargs);
$values = $postargs;
$pairs = array();
foreach($keys as $key) {
array_push($pairs, $key.'='.$values[$key]);
}
return $this->objectify( $this->process($request, join('&',$pairs)) );
The reason is this bug: http://bugs.php.net/bug.php?id=50060
The above is just a workaround for a PHP bug :(
Original comment by mac.g...@gmail.com
on 7 Nov 2009 at 3:08
Original issue reported on code.google.com by
matthew....@gmail.com
on 5 Jul 2009 at 9:34