SalmanAzmat / php-twitter

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

the friendsTimeline() is not right #21

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
It wasn't returning my friends timeline it was only returning my timeline

I simply replaces the code from the userstimeline with the 

        if( $id === false )
            $request = 'http://twitter.com/statuses/friends_timeline.' .
$this->type . $qs;
        else
            $request = 'http://twitter.com/statuses/friends_timeline/' .
rawurlencode($id) . '.' . $this->type . $qs;

Replacing the 'users_timeline' with the 'friends_timeline'.
It seems to work but I didn't have time to go over it.

What steps will reproduce the problem?
1.
2.
3.

What is the expected output? What do you see instead?

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

Please provide any additional information below.

Original issue reported on code.google.com by dcw...@gmail.com on 17 Mar 2009 at 4:45

GoogleCodeExporter commented 8 years ago
Changeset [86] fixes

Original comment by emmenset...@gmail.com on 23 Mar 2009 at 5:42