willwharton/yii-twitter

There is no license information available for the latest version (dev-master) of this package.

dev-master 2013-12-28 01:43 UTC

This package is not auto-updated.

Last update: 2024-04-23 04:09:21 UTC


README

yii-twitter-oauth

Twitter Oauth Library

This is a mod





**Installation**

* Extract the release files under 'protected/extensions'

* Configure settings in 'Main.php'


**Site Configuration**

		

For Single Sign On (SSO)

		'components'=>array(	
			'twitter' => array(
				'class' => 'ext.yiitwitteroauth.YiiTwitter',
				'consumer_key' => 'YOUR_TWITTER_CONSUMER_KEY',
				'consumer_secret' => 'YOUR_TWITTER_CONSUMER_SECRET',
				'callback' => 'YOUR_TWITTER_CALLBACK_URL',
			),
		...