Method: photo.update
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
更新 Photo
的中繼資料,例如姿勢、地點關聯、連結等。不支援變更相片的像素。
系統只會使用 updateMask
欄位中指定的欄位。如果未顯示 updateMask
,則更新內容會套用至所有欄位。
這個方法會傳回下列錯誤代碼:
HTTP 要求
PUT https://streetviewpublish.googleapis.com/v1/photo/{photo.photoId.id}
這個網址使用 gRPC 轉碼語法。
路徑參數
參數 |
photo.photoId.id |
string
相片的專屬 ID。
|
查詢參數
參數 |
updateMask |
string (FieldMask format)
必要欄位。可識別待更新相片中繼資料欄位的遮罩。如果沒有,則在這項要求中,舊的 Photo 中繼資料會完全替換為新的 Photo 中繼資料。如果指定無效欄位,更新就會失敗。以逗號分隔的清單可指定多個欄位。 下列欄位有效:
pose.heading
pose.lat_lng_pair
pose.pitch
pose.roll
pose.level
pose.altitude
connections
places
注意:如果 updateMask 包含重複欄位,整組重複值都會替換為新內容。舉例來說,如果 updateMask 包含 connections ,而 UpdatePhotoRequest.photo.connections 為空白,則系統會移除所有連線。
|
回應主體
如果成功,回應主體會包含 Photo
的執行例項。
授權範圍
需要下列 OAuth 範圍:
https://www.googleapis.com/auth/streetviewpublish
詳情請參閱 OAuth 2.0 總覽。
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2023-12-01 (世界標準時間)。
[[["容易理解","easyToUnderstand","thumb-up"],["確實解決了我的問題","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["缺少我需要的資訊","missingTheInformationINeed","thumb-down"],["過於複雜/步驟過多","tooComplicatedTooManySteps","thumb-down"],["過時","outOfDate","thumb-down"],["翻譯問題","translationIssue","thumb-down"],["示例/程式碼問題","samplesCodeIssue","thumb-down"],["其他","otherDown","thumb-down"]],["上次更新時間:2023-12-01 (世界標準時間)。"],[[["Updates a Photo's metadata, such as pose, connections, and places, but not the image pixels themselves."],["Uses an `updateMask` to specify which fields to update; if omitted, all fields are updated."],["Requires the `https://www.googleapis.com/auth/streetviewpublish` OAuth scope for authorization."],["Returns the updated Photo object if successful."],["May return errors if permissions are lacking, the request is invalid, the Photo doesn't exist, or is still being indexed."]]],["This describes how to update a photo's metadata using the Street View Publish API. It uses a `PUT` request to a specific URL with a photo ID in the path. The `updateMask` query parameter specifies which metadata fields to modify. The request body contains the new metadata, and the response body returns the updated photo. Key metadata includes pose, connections, and places. Authorization requires a specific OAuth scope. Possible errors include permission, invalid argument, not found, or unavailability.\n"]]