Googleドライブでデスクトップアプリを使用してファイルのリストを取得しようとしています。次のようにコードは次のとおりです。ドライブAPIリクエストにGoogleドライブのファイルが表示されていません
def main(argv):
storage = Storage('drive.dat')
credentials = storage.get()
if credentials is None or credentials.invalid:
credentials = run(FLOW, storage)
# Create an httplib2.Http object to handle our HTTP requests and authorize it
# with our good Credentials.
http = httplib2.Http()
http = credentials.authorize(http)
service = build("drive", "v2", http=http)
retrieve_all_files(service)
次にretrieve_all_filesに、私は、ファイルの印刷:
param = {}
if page_token:
param['pageToken'] = page_token
files = service.files().list(**param).execute()
print files
をしかし、私は自分のアカウントへの認証後、印刷されたファイルリストにはアイテムがありません。誰もが似たような問題を抱えているのか、これに対する解決策を知っていますか?
retrieve_all_files全体を貼り付けることはできますか?これは便利な機能のようです。 –
@ AliAfshar、あなたはそれをここに見つけることができます:https://developers.google.com/drive/v2/reference/files/list –