Google Drive Oauth权限请求被禁用

问题描述 投票:1回答:1

我正在尝试通过python脚本将树莓派文件上传到google驱动器-昨天工作正常,但今天,当我将其带到“请求权限”页面时,“拒绝”和“允许”按钮均被禁用,因此我无法访问我的Google云端硬盘并继续上传。

我已经尝试注销,重新登录以及其他Web服务器和Google帐户。我是python的新手,但这似乎是网络浏览器的问题?

from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive

##SET UP GOOGLE DRIVE UPLOAD
gauth = GoogleAuth()
drive = GoogleDrive(gauth)
g_login.localWebserverAuth()

...

    file1 = drive.CreateFile()
    file1.SetContentFile('/home/pi/Desktop/earth_test_7/' +
folder_name + photo_name)
    file1.Upload()
    print("Photo uploaded!")

这之前是让我授予权限的,所以我不确定这是我可以在代码中解决的问题还是需要在浏览器端修复的问题。我迷路了,不胜感激!

python oauth google-drive-api
1个回答
0
投票

您解决问题了吗?我在生成令牌时遇到了同样的问题

© www.soinside.com 2019 - 2024. All rights reserved.