Learn about the new Picker API and important Library API changes.
Details here.
管理媒體項目
透過集合功能整理內容
你可以依據偏好儲存及分類內容。
除了上傳後存取及擷取媒體項目,您還可以變更媒體項目的說明。
必要的授權範圍
如要變更應用程式建立內容的說明,您必須使用 photoslibrary.edit.appcreateddata
範圍。如要進一步瞭解範圍,請參閱「授權範圍」。
如要變更媒體項目的說明,請使用媒體項目 ID 發出 media items update
call
,並在要求中加入新說明。
如要變更媒體項目的說明,您的應用程式必須已上傳該媒體項目,且目前已驗證的使用者必須是擁有者。說明長度不得超過 1,000 個字元。
REST
以下是用於更新媒體項目說明的 PATCH 要求標頭:
PATCH https://photoslibrary.googleapis.com/v1/mediaItems/media-item-id?updateMask=description
這項要求會透過網址中的 updateMask
參數,加入欄位遮罩來決定要更新哪些屬性。
在要求內文中加入新的說明:
{
"description": "new-media-item-description"
}
如果成功,回應會傳回更新後的媒體項目:
{
"id": "media-item-id",
"description": "new-media-item-description",
"productUrl": "media-item-product-url",
"baseUrl": "media-items-in-album",
"mimeType": "mime-type-of-media",
"mediaMetadata": {
...
},
"contributorInfo": {
...
},
"fileName": "item-filename"
}
除非另有註明,否則本頁面中的內容是採用創用 CC 姓名標示 4.0 授權,程式碼範例則為阿帕契 2.0 授權。詳情請參閱《Google Developers 網站政策》。Java 是 Oracle 和/或其關聯企業的註冊商標。
上次更新時間:2024-11-09 (世界標準時間)。
[[["容易理解","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"]],["上次更新時間:2024-11-09 (世界標準時間)。"],[[["After uploading media items to Google Photos, you can change their descriptions using the Google Photos API."],["Modifying descriptions of app-created content requires the `photoslibrary.edit.appcreateddata` scope and ownership by the authenticated user."],["To update a description, use the `mediaItems/patch` endpoint with the item's ID and a request body containing the new description."],["The `updateMask` parameter in the request URL specifies that only the description is being modified."],["The response to a successful update request will return the complete updated media item object."]]],[]]