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.