Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to show a small area on my website where I see my recent tweets, I am using Yii framework. So reading this article I downloaded twitter API from here In my main.php I added

'twitter' => array(

        'class' => 'application.extensions.twitter.VGTwitter',
        'username' => 'my_twitter_username',
        'apiCallType' => 'statuses/user_timeline', 
        'password' => 'my_twitter_password', 
        'authenticate' => true,
        'format' => 'rss', 
        'postParams' => array( 'count' => 2 )
    ),

now in my Site Controller I am trying,

$returned = Yii::app()->twitter->get()->getResponseData(); echo $returned;

This throws a CException 401. i.e. Unauthorised. whereas I am entering my password and username correctly, rechecked. I doubt if this the correct method I am following to display recent tweets, if not, is there any similar method other than this Twitter From Yii. P.S. I am working on my localhost my website isn't hosted as yet.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.