1)Twitterへアプリケーション登録
おもいっきり省略!!
2)以下の情報を準備
- Consumer key
- Consumer secret
- Access token
- Access token secret
- (あと、Access levelを Read & Writeに設定)
3)以下のURL(github)よりライブラリを取得
twitteroauth
https://github.com/abraham/twitteroauth
4)あとは以下の3行でOK
require_once('twitteroauth/twitteroauth.php'); $connection = new TwitterOAuth('CONSUMER_KEY', 'CONSUMER_SECRET', 'ACCESS_TOKEN', 'ACCESS_TOKEN_SECRET'); $connection->post('statuses/update', array('status' => 'text to tweet'));
コメントを残す