認証ユーザーのプロフィールバナーをアップロードします。 For best results, upload an profile_banner_url node in their Users objects. sizing variationsの詳細情報についてはUser Profile Images and Banners とGET users / profile_bannerで見ることができます。
プロフィールバナー画像は非同期で処理されます。 The profile_banner_url and its variant sizes will not necessary be available directly after upload.
POST account/
|
コード | 意味 |
---|---|
200, 201, 202 | プロフィールバナー画像のアップロードに成功しました |
400 | 画像もしくは画像データの処理ができませんでした |
422 | 画像がサイズ変更できないか、大きすぎます。 |
HTTP Response Codes
|
https://api.twitter.com/1.1/account/update_profile_banner.json
Resource URL
|
Resource Information
Response formats
JSON
Requires authentication?
Yes (user context only)
Rate limited?
Yes
|
ユーザーの新しいプロフィール画像としてアップロードするBase64-エンコードされた、もしくは RAW 画像データ。
アップロードする画像から切り取る、ピクセル単位の横幅。height
と offset_left
と offset_top
を一緒に設定し、画像の表示したい範囲を選んでください。
アップロードする画像から切り取る、ピクセル単位の高さ。width
と offset_left
と offset_top
を一緒に設定し、画像の表示したい範囲を選んでください。
左側を基点とした、アップロードする画像の切り取り開始位置(ピクセル単位)。 height
と width
と offset_top
を一緒に設定し、画像の表示したい範囲を選んでください。
上側と基点とした、アップロードする画像の切り取り開始位置(ピクセル単位)。 height
と width
と offset_left
を一緒に設定し、画像の表示したい範囲を選んでください。
注意: height
, width
, offset_left
, offset_top
の各パラメータのうちいずれか一つを設定した場合、全てのサイズパラメータを設定しなければなりません。
Parameters
banner
required
The Base64-encoded or raw image data being uploaded as the user’s new profile banner.
width
optional
The width of the preferred section of the image being uploaded in pixels. Use with
height
optional
The height of the preferred section of the image being uploaded in pixels. Use with
offset_left
optional
The number of pixels by which to offset the uploaded image from the left. Use with
offset_top
optional
The number of pixels by which to offset the uploaded image from the top. Use with Note: If providing any one of the |
ログインして登録アプリケーションの一覧を参照してください。
OAuth Signature GeneratorSign in to see a list of your registered applications. |
POST
https://api.twitter.com/1.1/account/update_profile_banner.json?width=1500&height=500&offset_top=0&offset_left=0&banner=FILE_DATA
Example RequestPOST
|