忍者ブログ

[PR]

×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

tmhOAuth覚え書き

ツイッターのツイート取得したくてtmhOAuthふにふに弄ったので覚え書き

1)https://apps.twitter.com でアプリケーション登録する
2)https://github.com/themattharris/tmhOAuth でtmhOAuth本体を、https://github.com/themattharris/tmhOAuthExamples でサンプルをダウンロードしてくる
3)サンプル内のtmhOAuthExampleクラスの各種キーに(1)で登録した時に生成されたキーを登録する。
「bearer」は cli/obtain_bearer.php でアクセスすると表示される物を使用。
4)サンプルのindex.phpにアクセス。うまい(てーれってれー)

以下タイムラインとって取得するだけのサンプル
        $tmhOAuthObj = new tmhOAuth($configHash);
        $endpoint = $tmhOAuthObj->url('1.1/statuses/home_timeline');
        $code = $tmhOAuthObj->request('GET', $endpoint);
        $response = json_decode($tmhOAuthObj->response["response"]);
        foreach($response as $key => $obj){
             print $obj->user->name."<br>";
             print $obj->text."<hr>";
        }

参考URI
http://jaxx2104.info/tmhoauth-twitter
https://dev.twitter.com/rest/reference/get/statuses/home_timeline
PR

この記事にコメントする

お名前
タイトル
メール
URL
コメント
絵文字
Vodafone絵文字 i-mode絵文字 Ezweb絵文字
パスワード