「つぶやき」をリツイートする retweet id
2012年のTwitter APIの記事です。
参考資料として掲載しておきます。
目次 [閉じる]
Twitter API statuses/retweet/:id
API Resource
POST statuses/retweet/:id
APIの動作説明
指定したidのステータス情報(各つぶやきとそれに関連する諸々の情報)をリツイートします。
「つぶやき」をリツイートします。成功するとオリジナルのステータス情報を返します。
Resource URL(リソースURL)
http://api.twitter.com/1/statuses/retweet/:id.format
Resource Information(リソース情報)
Rate Limited(制限) | Yes(あり) |
Requires Authentication(認証) | Yes(あり) |
Response Formats(フォーマット) | json xml |
HTTP Methods(HTTPメソッド) | POST |
Parameters(パラメーター)
id ※必須 | サンプル値:123456789 | ステータス情報IDを指定します。 |
include_entities ※オプション | サンプル値:true | このパラメータを true または 1 にすると、ステータス情報に entities情報が含まれるようになります。entities情報はそのステータス情報に関連するuser_mentions, urls, hashtagsなどのメタデータです。entitiesの詳細はこちらを参照下さい。 |
trim_user ※オプション | サンプル値:true | このパラメータを true または 1 にすると、返されるステータス情報のユーザ情報をユーザID(数値ID)のみにします。 |
サンプルコード
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"> <head> <meta name="robots" content="index"> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>TRYPHP! Twitter API 指定したidのステータス情報をリツイートします。 POST statuses/retweet/:id</title> </head> <body> <?php ######################################### ### 初期設定 //twitteroauth.phpをインクルードします。ファイルへのパスは環境に合わせて記述下さい。 require_once("./twitteroauth.php"); //Consumer keyの値をTwitterAPI開発者ページでご確認下さい。 $consumerKey = "***************"; //Consumer secretの値を格納 $consumerSecret = "***********************************"; //Access Tokenの値を格納 $accessToken = "***********************************"; //Access Token Secretの値を格納 $accessTokenSecret = "***********************************"; //OAuthオブジェクトを生成する $twObj = new TwitterOAuth($consumerKey,$consumerSecret,$accessToken,$accessTokenSecret); ?> <?php ######################################### ### ページ説明 ?> <h1>Twitter API 指定したidのステータス情報をリツイートします。 POST statuses/retweet/:id</h1> <!-- 説明ページurl --> <h3><a href="https://wepicks.net/2012/01/11/phpapptwitter-retweet_id/">→説明はこちら</a></h3> <hr/> <?php ######################################### ### 取得したデータを展開 ?> <h2>取得したデータを展開</h2> <div style="background-color:#f8f8f8;margin:20px; padding:20px; border:solid #cccccc 1px;"> <!-- // =========================== ここから =========================== --> <?php //API実行データ取得 $vRequest = $twObj->OAuthRequest("https://api.twitter.com/1/statuses/retweet/186322894622695424.xml","POST",array()); //XMLデータをsimplexml_load_string関数を使用してオブジェクトに変換する $oXml = simplexml_load_string($vRequest); //オブジェクトを展開 if(isset($oXml->error) && $oXml->error != ''){ echo "リツイートできませんでした。<br>\n"; echo "ステータスIDが正しいかパラメーターの指定を確認して下さい。<br>\n"; echo "エラーメッセージ:".$oXml->error."<br>\n"; }else{ $iStatusId = $oXml->id; //リツイートつぶやきステータスID $sText = $oXml->text; //リツイートつぶやき $iRtStatusId = $oXml->retweeted_status->id; //リツイート元ステータスID $sRtText = $oXml->retweeted_status->text; //リツイート元つぶやき $iRtUserId = $oXml->retweeted_status->user->id; //リツイート元ユーザーID $sRtScreenName = $oXml->retweeted_status->user->screen_name; //リツイート元screen_name $sRtUserName = $oXml->retweeted_status->user->name; //リツイート元ユーザー名 echo "<p><b>RT statusid(".$iStatusId.") RT text(".$sText.")</b><br> <b>RT元 statusid(".$iRtStatusId.") RT元 screen_name(".$sRtScreenName.") RT元 userid(".$iRtUserId.") RT元 username(".$sRtUserName.")</b><br> <a href=\"http://twitter.com/".$sRtScreenName."/status/".$iRtStatusId."\">このリツイートつぶやきのパーマリンク</a><br>\n".$sRtText."</p>\n"; } ?> <!-- =========================== ここまで =========================== // --> </div> <hr/> <?php ######################################### ### 取得したオブジェクトの内容 ?> <h1>取得したオブジェクトの内容</h1> <?php var_dump($oXml); ?> <\/pre> <hr/> </body> </html> |
タグ(=記事関連ワード)
タグ: tweets, Twitter, twitter api
日付
投稿日:2012年1月11日
最終更新日:2023年09月05日
最終更新日:2023年09月05日
このカテゴリの他のページ
この記事へのコメント
トラックバックurl
https://wepicks.net/phpapptwitter-retweet_id/trackback/