指定したユーザーをブロックします。また、ブロックされたユーザーは認証ユーザーのメンションやタイムラインに表示されません (他のユーザーがリツイートしない限り)。 フォロー関係や友達関係があった場合、それは破棄されます。
/version/block/create/:screen_name_or_user_id.formatのURLパターンはまだ使用できますが、非推奨です。
スクリーンネームには数字を使うことができるので 、代わりに screen_name パラメータもしくは user_id パラメータを使用することを推奨します。
POST blocks/
|
https://api.twitter.com/1.1/blocks/create.json
Resource URL
|
Resource Information
Response formats
JSON
Requires authentication?
Yes (user context only)
Rate limited?
Yes
|
screen_name か user_id のうちどちらか一つは必ず設定してください。
ブロックされるユーザーのスクリーンネーム。スクリーンネームとユーザーIDが同じ場合に、どちらを指定しているのか明確にするために使います。
サンプル値: noradio
ブロックされるユーザーのユーザーID。ユーザーIDとスクリーンネームが同じ場合に、どちらを指定しているのか明確にするために使います。
サンプル値: 12345
falseが設定された場合、entitiesノードは含まれません。
サンプル値: false
trueかtか1を設定した場合、取得したユーザーオブジェクトにステータス情報は含まれません。
サンプル値: true
ParametersEither
screen_name
optional
The screen name of the potentially blocked user. Helpful for disambiguating when a valid screen name is also a user ID. Example Values:
user_id
optional
The ID of the potentially blocked user. Helpful for disambiguating when a valid user ID is also a valid screen name. Example Values:
include_entities
optional
The Example Values:
skip_status
optional
When set to either Example Values: |
ログインして登録アプリケーションの一覧を参照してください。
OAuth Signature GeneratorSign in to see a list of your registered applications. |
POST
https://api.twitter.com/1.1/blocks/create.json?screen_name=theSeanCook&skip_status=1
Example RequestPOST
|
{
"contributors_enabled": true,
"created_at": "Sat May 09 17:58:22 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "I taught your phone that thing you like. The Mobile Partner Engineer @Twitter. ",
"entities": {
"description": {
"urls": []
}
},
"favourites_count": 586,
"follow_request_sent": false,
"followers_count": 10622,
"following": false,
"friends_count": 1181,
"geo_enabled": true,
"id": 38895958,
"id_str": "38895958",
"is_translator": false,
"lang": "en",
"listed_count": 190,
"location": "San Francisco",
"name": "Sean Cook",
"notifications": false,
"profile_background_color": "1A1B1F",
"profile_background_image_url": "http://a0.twimg.com/profile_background_images/495742332/purty_wood.png",
"profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/495742332/purty_wood.png",
"profile_background_tile": true,
"profile_image_url": "http://a0.twimg.com/profile_images/1751506047/dead_sexy_normal.JPG",
"profile_image_url_https": "https://si0.twimg.com/profile_images/1751506047/dead_sexy_normal.JPG",
"profile_link_color": "2FC2EF",
"profile_sidebar_border_color": "181A1E",
"profile_sidebar_fill_color": "252429",
"profile_text_color": "666666",
"profile_use_background_image": true,
"protected": false,
"screen_name": "theSeanCook",
"show_all_inline_media": true,
"statuses_count": 2609,
"time_zone": "Pacific Time (US & Canada)",
"url": null,
"utc_offset": -28800,
"verified": false
}
Example Result
{
"contributors_enabled": true,
"created_at": "Sat May 09 17:58:22 +0000 2009",
"default_profile": false,
"default_profile_image": false,
"description": "I taught your phone that thing you like. The Mobile Partner Engineer @Twitter. ",
"entities": {
"description": {
"urls": []
}
},
"favourites_count": 586,
"follow_request_sent": false,
"followers_count": 10622,
"following": false,
"friends_count": 1181,
"geo_enabled": true,
"id": 38895958,
"id_str": "38895958",
"is_translator": false,
"lang": "en",
"listed_count": 190,
"location": "San Francisco",
"name": "Sean Cook",
"notifications": false,
"profile_background_color": "1A1B1F",
"profile_background_image_url": "http://a0.twimg.com/profile_background_images/495742332/purty_wood.png",
"profile_background_image_url_https": "https://si0.twimg.com/profile_background_images/495742332/purty_wood.png",
"profile_background_tile": true,
"profile_image_url": "http://a0.twimg.com/profile_images/1751506047/dead_sexy_normal.JPG",
"profile_image_url_https": "https://si0.twimg.com/profile_images/1751506047/dead_sexy_normal.JPG",
"profile_link_color": "2FC2EF",
"profile_sidebar_border_color": "181A1E",
"profile_sidebar_fill_color": "252429",
"profile_text_color": "666666",
"profile_use_background_image": true,
"protected": false,
"screen_name": "theSeanCook",
"show_all_inline_media": true,
"statuses_count": 2609,
"time_zone": "Pacific Time (US & Canada)",
"url": null,
"utc_offset": -28800,
"verified": false
}
|