6

像其他人一样,我试图让 Google 刷新令牌工作,以便运行复制和重命名文件的计划任务。

当我第一次在终端中手动进行身份验证时,我的 url 以 &access_type=offline 结尾。但是,当我进入并尝试在 ipython 中手动使用 gauth.Refresh() 时,它会失败并出现与我的凭据文件过期时相同的错误:

pydrive.auth.RefreshError: No refresh_token found.Please set access_type of OAuth to offline.

我如何实际将 access_type 设置为离线?非常感谢任何建议。

我一直在这里这里这里试图解决这个问题。

我的脚本:

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

gauth = GoogleAuth()

# Try to load saved client credentials
gauth.LoadCredentialsFile("GoogleDriveCredentials.txt")
if gauth.credentials is None:
    # Authenticate if they're not there
    gauth.LocalWebserverAuth()
elif gauth.access_token_expired:
    # Refresh them if expired
    print "Google Drive Token Expired, Refreshing"
    gauth.Refresh()
else:
    # Initialize the saved creds
    gauth.Authorize()
# Save the current credentials to a file
gauth.SaveCredentialsFile("GoogleDriveCredentials.txt")
drive = GoogleDrive(gauth)

我的 settings.yaml 文件:

client_config_backend: settings
client_config:
  client_id: ###actual client_id###
  client_secret: ###actual client_secret###

save_credentials: True
save_credentials_backend: file
save_credentials_file: credentials.json

get_refresh_token: True

oauth_scope:
  - https://www.googleapis.com/auth/drive
4

1 回答 1

-1

我去过那里,下面为我工作。

from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive   
gauth = GoogleAuth()
gauth.LocalWebserverAuth()
gauth.LoadCredentialsFile(gauth)

使用上面的代码在根目录中创建一个新文件夹作为 quickstart.py。
从 google drive api 凭据下载 client_sercrets.json 并将其放在根目录中
将 settings.yaml 文件放在根文件夹
中 从控制台运行 quickstart.py ,它将打开一个浏览器,要求您授权应用程序。
此过程完成后,它将在您的根目录中创建一个 credentials.json 文件。
访问令牌现在应该能够自行刷新。

Drive API 设置需要注意的几件事,它应该是 Web 应用程序类型,在 Authorize Javascript " http://localhost:8080 " 和 Authorized redirect URIs " http://localhost:8080/ "

如果成功,请将“credentials.json”、“client_secrets.json”、“settings.yaml”文件转移到您的生产根目录,它应该可以工作。

希望这可以帮助!

于 2015-10-02T12:21:57.883 回答