認証ユーザーのプロフィールの背景画像を更新します。このメソッドはを使って、プロフィールの背景画を有効もしくは無効にすることもできます。
各パラメータは任意で設定するものですが、リクエストする際には少なくとも image
, tile
, use
のうちいずれか一つは設定しなければなりません。
POST account/
|
https://api.twitter.com/1.1/account/update_profile_background_image.json
Resource URL
|
Resource Information
Response formats
JSON
Requires authentication?
Yes
Rate limited?
Yes
|
base64エンコードされた、プロフィールの背景画像。800キロバイト未満のサイズの有効な GIFや JPGや PNG 画像でなければなりません。 2048より大きい横幅の画像は強制的に縮小されます。画像は、URLではなくRAWマルチパートデータとして渡さなければなりません。
背景画像をタイルにするどうか。true
や t
や 1
を設定した場合、背景画像は敷き詰め表示されます。
設定しなかった場合は、画像は敷き詰め表示されません。
false
を設定すると、 entities
ノードは含まれません。
サンプル値: false
true
か t
か 1
を設定した場合、取得したユーザーオブジェクトにステータス情報は含まれません。
プロフィールの背景画像を表示するかどうかを決めます。true
かt
か 1
を設定した場合、このリクエストで一緒に画像を渡しているか、既に画像をアップロードしているのであれば背景画像が表示されます。
画像をアップロードしていないか存在しない状態で背景画像を使おうとした場合は、エラーが返ります。
true
, t
,1
以外を設定している場合は、背景画像は使用されません。.
Parameters
image
optional
The background image for the profile, base64-encoded. Must be a valid GIF, JPG, or PNG image of less than 800 kilobytes in size. Images with width larger than 2048 pixels will be forcibly scaled down. The image must be provided as raw multipart data, not a URL.
tile
optional
Whether or not to tile the background image. If set to
include_entities
optional
The Example Values:
skip_status
optional
When set to either
use
optional
Determines whether to display the profile background image or not. When set to |
ログインして登録アプリケーションの一覧を参照してください。
OAuth Signature GeneratorSign in to see a list of your registered applications. |
POST
https://api.twitter.com/1.1/account/update_profile_background_image.json?use=1&skip_status=1&tile=1
Example RequestPOST
|
{ "contributors_enabled": false, "created_at": "Thu Aug 23 19:45:07 +0000 2012", "default_profile": false, "default_profile_image": false, "description": "Keep calm and test", "favourites_count": 0, "follow_request_sent": false, "followers_count": 0, "following": false, "friends_count": 10, "geo_enabled": true, "id": 776627022, "id_str": "776627022", "is_translator": false, "lang": "en", "listed_count": 0, "location": "San Francisco, CA", "name": "Sean Test", "notifications": false, "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme16/bg.gif", "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme16/bg.gif", "profile_background_tile": false, "profile_image_url": "http://a0.twimg.com/profile_images/2550256790/hv5rtkvistn50nvcuydl_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/2550256790/hv5rtkvistn50nvcuydl_normal.jpeg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": true, "protected": false, "screen_name": "s0c1alm3dia", "show_all_inline_media": false, "statuses_count": 0, "time_zone": "Pacific Time (US & Canada)", "url": "http://cnn.com", "utc_offset": -28800, "verified": false }
Example Result{ "contributors_enabled": false, "created_at": "Thu Aug 23 19:45:07 +0000 2012", "default_profile": false, "default_profile_image": false, "description": "Keep calm and test", "favourites_count": 0, "follow_request_sent": false, "followers_count": 0, "following": false, "friends_count": 10, "geo_enabled": true, "id": 776627022, "id_str": "776627022", "is_translator": false, "lang": "en", "listed_count": 0, "location": "San Francisco, CA", "name": "Sean Test", "notifications": false, "profile_background_color": "9AE4E8", "profile_background_image_url": "http://a0.twimg.com/images/themes/theme16/bg.gif", "profile_background_image_url_https": "https://si0.twimg.com/images/themes/theme16/bg.gif", "profile_background_tile": false, "profile_image_url": "http://a0.twimg.com/profile_images/2550256790/hv5rtkvistn50nvcuydl_normal.jpeg", "profile_image_url_https": "https://si0.twimg.com/profile_images/2550256790/hv5rtkvistn50nvcuydl_normal.jpeg", "profile_link_color": "0084B4", "profile_sidebar_border_color": "BDDCAD", "profile_sidebar_fill_color": "DDFFCC", "profile_text_color": "333333", "profile_use_background_image": true, "protected": false, "screen_name": "s0c1alm3dia", "show_all_inline_media": false, "statuses_count": 0, "time_zone": "Pacific Time (US & Canada)", "url": "http://cnn.com", "utc_offset": -28800, "verified": false } |