サイトのトップへ戻る

Twitter 開発者 ドキュメント日本語訳

GET blocks/list

認証ユーザーがブロックしているユーザーのユーザーオブジェクトを取得します。

重要このメソッドは、指定したページの分だけ情報が表示されます。つまり、全てのブロック情報を漏れなく取得するには、アプリで複数回のリクエストを実行しなければなりません。 カーソリング動作の詳細についてはUsing cursors to navigate collectionsを参照してください。



リソース URL

https://api.twitter.com/1.1/blocks/list.json



リソース情報

応答形式
JSON
認証は必要ですか?
はい (user context only)
レート制限はありますか?
はい
リクエスト回数 / 15分 window (ユーザー認証の場合)
15


パラメータ

include_entities 任意

falseを設定すると、entitiesノードは含まれません。

サンプル値: false

skip_status 任意

truet1を設定した場合、取得したユーザーオブジェクトにステータス情報は含まれません。

cursor 半分任意

現在のところ、取得するIDが5000を超えると複数のページに分割されます。 クエリ後にアカウント停止中のユーザーがフィルタされるので、取得されるIDの数は必ず5000になる訳ではありません。 cursor が設定されなかった場合、一番最初のページを表す -1 が設定されたと見なされます。

API からの応答には previous_cursorパラメータと next_cursorパラメータが含まれており、これを使って前後のページを操作できます。詳細情報についてはUsing cursors to navigate collectionsを参照してください。

サンプル値: 12893764510938



OAuth 署名ジェネレータ

ログインして登録アプリケーションの一覧を参照してください。



リクエスト例

GET

https://api.twitter.com/1.1/blocks/list.json?skip_status=true&cursor=-1



応答結果の例

{
  "previous_cursor": 0,
  "previous_cursor_str": "0",
  "next_cursor": 0,
  "users": [
    {
      "profile_sidebar_fill_color": "DDEEF6",
      "profile_background_tile": false,
      "profile_sidebar_border_color": "C0DEED",
      "name": "Javier Heady 
",
      "created_at": "Thu Mar 01 00:16:47 +0000 2012",
      "profile_image_url": "http://a0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
      "location": "",
      "is_translator": false,
      "follow_request_sent": false,
      "profile_link_color": "0084B4",
      "id_str": "509466276",
      "entities": {
        "description": {
          "urls": [

          ]
        }
      },
      "contributors_enabled": false,
      "favourites_count": 0,
      "url": null,
      "default_profile": true,
      "utc_offset": null,
      "profile_image_url_https": "https://si0.twimg.com/sticky/default_profile_images/default_profile_4_normal.png",
      "id": 509466276,
      "listed_count": 0,
      "profile_use_background_image": true,
      "followers_count": 0,
      "protected": false,
      "lang": "en",
      "profile_text_color": "333333",
      "profile_background_color": "C0DEED",
      "notifications": false,
      "verified": false,
      "description": "",
      "geo_enabled": false,
      "time_zone": null,
      "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme1/bg.png",
      "friends_count": 0,
      "default_profile_image": true,
      "statuses_count": 4,
      "profile_background_image_url": "http://a0.twimg.com/images/themes/theme1/bg.png",
      "following": false,
      "screen_name": "javierg3ong"
    }
  ],
  "next_cursor_str": "0"
}