認証ユーザーがブロックしているユーザーのユーザーオブジェクトを取得します。
重要このメソッドは、指定したページの分だけ情報が表示されます。つまり、全てのブロック情報を漏れなく取得するには、アプリで複数回のリクエストを実行しなければなりません。 カーソリング動作の詳細についてはUsing cursors to navigate collectionsを参照してください。
GET blocks/
|
https://api.twitter.com/1.1/blocks/list.json
Resource URL
|
Resource Information
Response formats
JSON
Requires authentication?
Yes (user context only)
Rate limited?
Yes
Requests / 15-min window (user auth)
15
|
false
を設定すると、entities
ノードは含まれません。
サンプル値: false
true
かt
か1
を設定した場合、取得したユーザーオブジェクトにステータス情報は含まれません。
現在のところ、取得するIDが5000を超えると複数のページに分割されます。 クエリ後にアカウント停止中のユーザーがフィルタされるので、取得されるIDの数は必ず5000になる訳ではありません。 cursor が設定されなかった場合、一番最初のページを表す -1
が設定されたと見なされます。
API からの応答には previous_cursor
パラメータと next_cursor
パラメータが含まれており、これを使って前後のページを操作できます。詳細情報についてはUsing cursors to navigate collectionsを参照してください。
サンプル値: 12893764510938
Parameters
include_entities
optional
The Example Values: skip_status optional
When set to either
cursor
semi-optional
Causes the list of blocked users to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filtered out after connections are queried. If no cursor is provided, a value of Example Values: |
ログインして登録アプリケーションの一覧を参照してください。
OAuth Signature GeneratorSign in to see a list of your registered applications. |
GET
https://api.twitter.com/1.1/blocks/list.json?skip_status=true&cursor=-1
Example RequestGET
|
{ "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" }
Example Result{ "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" } |