google drive api로 파일 업로드 후 permission 객체 리턴받기
file_resource = drive.files().create(body=metadata, media_body=path).execute()
일반적으로 이렇게 호출하고 file_resorce를 받아보면 file id 같은 정보만 있고 permissions 객체가 없다.
file_resource = drive.files().create(body=metadata, media_body=path, fields='id, permissions').execute()
이렇게 호출하면 permissions 객체를 리턴받을 수 있다.
permissions 객체 중에서도 특정 필드값만 얻어오고 싶으면 다음과 같이 사용하면 된다
file_resource = drive.files().create(body=metadata, media_body=path, fields='id, permissions(id, role, emailAddress)').execute()
Author And Source
이 문제에 관하여(google drive api로 파일 업로드 후 permission 객체 리턴받기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@sangeun-jo/google-drive-api로-파일-업로드-후-permission-객체-리턴받기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)