kausha-mehta / php-twitter

Automatically exported from code.google.com/p/php-twitter
0 stars 0 forks source link

Erro on RSS type #54

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
with this code:
$t = new twitter();

$t->username = "FernandoFalci";
$t->password = "******";

$t->type = "rss";
$out = $t->userTimeline();
echo '<pre>'.var_export($out,true).'</pre>'; // false

What is the expected output? What do you see instead?
An XML document containing an RSS

What version of the product are you using? On what operating system?
1.1

Please provide any additional information below.
I believe that the error is in the method objectify, which accepts only xml
and json returning false for all other options (rss and atom)

Original issue reported on code.google.com by falci....@gmail.com on 23 Apr 2010 at 2:41