Learn about the new Picker API and important Library API changes.
Details here.
미디어 항목 관리
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
미디어 항목을 업로드한 후 미디어 항목의 액세스 및 검색 외에 항목 설명도 변경할 수 있습니다.
필수 승인 범위
앱에서 생성된 콘텐츠의 설명을 변경하려면 photoslibrary.edit.appcreateddata
범위가 필요합니다. 범위에 대한 자세한 내용은 승인 범위를 참조하세요.
미디어 항목의 설명을 변경하려면 미디어 항목의 식별자로 media items update
call
를 만들고 요청에 새 설명을 포함합니다.
미디어 항목의 설명을 변경하려면 앱에서 미디어 항목을 업로드해야 하며 현재 인증된 사용자가 소유자여야 합니다. 설명은 1,000자(영문 기준) 이하여야 합니다.
REST
다음은 미디어 항목 설명을 업데이트하는 PATCH 요청 헤더입니다.
PATCH https://photoslibrary.googleapis.com/v1/mediaItems/media-item-id?updateMask=description
이 요청은 URL의 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"
}
달리 명시되지 않는 한 이 페이지의 콘텐츠에는 Creative Commons Attribution 4.0 라이선스에 따라 라이선스가 부여되며, 코드 샘플에는 Apache 2.0 라이선스에 따라 라이선스가 부여됩니다. 자세한 내용은 Google Developers 사이트 정책을 참조하세요. 자바는 Oracle 및/또는 Oracle 계열사의 등록 상표입니다.
최종 업데이트: 2024-11-09(UTC)
[[["이해하기 쉬움","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(UTC)"],[[["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."]]],[]]