自動ツイートPHP
まず、
https://github.com/abraham/twitteroauth/tree/master/twitteroauth
にアクセスし、
twitteroauth.php
OAuth.php
の2つのファイルをダウンロードします。
アクセスし、Myapplicationを開く。
新規アプリケーションを適当に登録し
「Consumer key」、「Consumer secret」などを取得します。
取得した4つのkeyを以下のソースにぶち込みます。
twitteroauth.php
OAuth.php
と同じディレクトリに以下のソースを貼り付けた、ファイルをUPし、
そのページにアクセスし、実行されるか確認
<?php
//twitteroauth.phpのパス。同一ディレクトリにOAuth.phpも設置する
require_once(“twitteroauth.php”);
$message = “投稿内容がここに入ります。”;
// Consumer keyの値
$consumer_key = “0NLEdVFp3zCVRrIIlGZAg”;
// Consumer secretの値
$consumer_secret = “wYtvSiOUL0ghGTMP4lbZZgfJoIZ2WkbGJmIrCs”;
// Access Tokenの値
$access_token = “398616484-bDJt2SFPHGGpIqksVeHBX8tKAYeC0kBc6bL6LRei”;
// Access Token Secretの値
$access_token_secret = “lBo4NjmcFJyeGU3n1emPOIqfuj5QzwbmH302haiiexM”;
// OAuthオブジェクト生成
$to = new TwitterOAuth($consumer_key,$consumer_secret,$access_token,$access_token_secret);
//投稿
$req = $to->OAuthRequest(“https://twitter.com/statuses/update.xml”,”POST”,array(“status”=>”$message“));
// レスポンスを表示する場合は下記コメントアウトを外す
//header(“Content-Type: application/xml”);
//echo $req;
?>
Comment