google drive api(2)
-
Google Drive API Service Account 연동
리눅스 서버에서 Google Drive API와 연동할 때, token 방식을 사용하면, token이 expire 되면서 서비스가 안됨다시 token을 다른 PC에서 만들어서 넣어주면 되지만, 귀찮음인증 부분을 해결하기 위해서 Service Account를 사용하기로 함Service Account 설정https://ahniverson.tistory.com/42 [GCP] 서비스 어카운트 생성 및 API 사용 설정1. 서비스 어카운트 생성 https://cloud.google.com/iam/docs/creating-managing-service-accounts#iam-service-accounts-create-console 서비스 계정 생성 및 관리 | Cloud IAM 문서 | Google Cloud 이..
2024.05.12 -
Google Drive API 사용법
account 등록 # 등록 gdrive account add ------------------------ Client ID: Client secret: ------------------------ # 조회 gdrive account list # export/import gdrive account export {account 이름} gdrive account import {export 파일} 디렉토리 목록 조회 # 목록 조회 gdrive files list # 특정 디렉토리 목록 조회 gdrive files list --parent {directory ID} 파일 업로드 gdrive files upload --parent {remote director ID} {local 파일 또는 디렉토리}
2024.03.17