[twitter-dev] Re: Really need assistance with a basic user timeline

2010-09-17 Thread Mike
Oh, wow. Thanks for pointing that out! I can't believe I never seen that parameter! Should be a nice fix for my current "This is usually my current Twitter status, but my last post may be a retweet and the feed does not support retweets :(" message on my personal site. :P Haha. Thanks a lot man!

Re: [twitter-dev] Re: Really need assistance with a basic user timeline

2010-09-17 Thread Matt Harris
Hey Mike, By default the user_timeline doesn't return retweets but you'll see in Taylor's example he added the querystring parameter include_rts=true. If you do that retweets are included so the call to statuses/retweeted_by_me is not required. Hope that helps, @themattharris On Fri, Sep 17, 201

[twitter-dev] Re: Really need assistance with a basic user timeline

2010-09-17 Thread Mike
@Taylor: statuses/user_timeline does not return retweets and will return blank if their last status was a retweet. To get retweets you need to use statuses/retweeted_by_me, which does require Authentication. On Sep 17, 3:35 pm, Taylor Singletary wrote: > Hi Mike, > > If your intention is to just

[twitter-dev] Re: Really need assistance with a basic user timeline

2010-09-17 Thread Mike
I suggest using http://github.com/abraham/twitteroauth Set up an application on http://dev.twitter.com/apps/new Plug the CONSUMER_KEY and CONSUMER_SECRET you get after creating the App into the TwitterOAuth script. Run the script and login, etc. In callback.php; you'll need to print_r on $_SESSIO