ホーム > PHP と Twitter > Twitter API > Friends & Followers(友達とフォロワー) > ユーザー同士のフォロー関係を取得 friendships exists
ユーザー同士のフォロー関係を取得 friendships exists
2012年のTwitter APIの記事です。
参考資料として掲載しておきます。
目次 [閉じる]
Twitter API friendships/exists
API Resource
GET friendships/exists
概要
指定した2人のユーザー間の友情関係を調べます。
user_a が user_b をフォローしている場合は true を返し、そうでない場合は false を返します。
2ユーザー間の友情の有無を調べるには、2ユーザーともに情報を公開設定している必要があります。
2ユーザーのどちらか、あるいは両方共、非公開設定の場合は、有無を調べるユーザーは認証が必要で、さらに、非公開ユーザーによってフォローされている必要があります。
このメソッドの代わりにfriendship/showの使用を検討して下さい。
原文
Resource URL(リソースURL)
http://api.twitter.com/1/friendships/exists.format
Resource Information(リソース情報)
Rate Limited(制限) | Yes(なし) |
Requires Authentication(認証) | Yes(あり)/No(なし) |
Response Formats(フォーマット) | json xml |
HTTP Methods(HTTPメソッド) | GET |
Parameters(パラメーター)
user_id_a ※オプション | サンプル値:12345 | 友達関係を調べる1人目ユーザー a のユーザーIDを指定します。 |
user_id_b ※オプション | サンプル値:12345 | 友達関係を調べる2人目ユーザー b のユーザーIDを指定します。 |
screen_name_a ※オプション | サンプル値:tryphp | 友達関係を調べる1人目ユーザー a の screen_name を指定します。 |
screen_name_b ※オプション | サンプル値: | 友達関係を調べる2人目ユーザー b の screen_name を指定します。 |
※備考:パラメータ user_a と user_b は、まだ使用することが可能ですが推奨されていません。screen_name または、 user_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 | <!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 friendships exists ユーザー間の友情関係 取得 表示</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 friendships exists ユーザー間の友情関係 取得 表示</h1> <!-- 説明ページurl --> <h3><a href="https://wepicks.net/2012/01/24/phpapptwitter-friendships_exists/">→説明はこちら</a></h3> <hr/> <?php ######################################### ### 取得したデータを展開 ?> <h2>取得したデータを展開</h2> <div style="background-color:#f8f8f8;margin:20px; padding:20px; border:solid #cccccc 1px;"> <!-- // =========================== ここから =========================== --> <?php //API実行データ取得 $vRequest = $twObj->OAuthRequest("http://api.twitter.com/1/friendships/exists.xml","GET",array('screen_name_a' => 'kfukuda413', 'screen_name_b' => 'tryphp')); //XMLデータをsimplexml_load_string関数を使用してオブジェクトに変換する $oXml = simplexml_load_string($vRequest); //オブジェクトを展開 if(isset($oXml->error) && $oXml->error != ''){ echo "取得に失敗しました。<br>\n"; echo "パラメーターの指定を確認して下さい。<br>\n"; echo "エラーメッセージ:".$oXml->error."<br>\n"; }else{ echo $oXml; } ?> <!-- =========================== ここまで =========================== // --> </div> <hr/> <?php ######################################### ### 取得したオブジェクトの内容 ?> <h2>取得したオブジェクトの内容</h2> <?php var_dump($oXml); ?> <hr/> </body> </html> |
タグ(=記事関連ワード)
日付
投稿日:2012年1月24日
最終更新日:2023年08月30日
最終更新日:2023年08月30日
このカテゴリの他のページ
この記事へのコメント
トラックバックurl
https://wepicks.net/phpapptwitter-friendships_exists/trackback/