実行結果' ; // エラー判定 if( !$obj || !isset($obj->data) ) { $html .= '
データを取得できませんでした…。設定を再確認して下さい。
' ; } else { foreach( $obj->data as $item ) { // 各データの整理 $id = $item->id ; // ユーザーID $username = $item->username ; // ユーザー名 $bio = ( isset( $item->bio ) ) ? $item->bio : '' ; // 紹介文 $website = ( isset( $item->website ) ) ? $item->website : '' ; // ウェブサイト $profile_picture = ( isset( $item->profile_picture ) ) ? $item->profile_picture : '' ; // アイコン画像 $full_name = ( isset( $item->full_name ) ) ? $item->full_name : '' ; // フルネーム // ブラウザに出力 $html .= '下記のデータを取得できました。
' ; $html .= 'このアプリケーションとの連携は、下記設定ページで解除することができます。
' ; $html .= 'https://instagram.com/accounts/manage_access/
' ; ?>