没有每次验证的情况下使用 Google Api 的任何方法?

Any way to use Google Api without every-time authentication?

我尝试在 PC 的自动运行中使用 python 上的 API。但我不能,因为每次程序启动时,它都会询问我授权码。 这是我的代码:

client_secret_file = "client_secret.json"
flow = google_auth_oauthlib.flow.InstalledAppFlow.from_client_secrets_file(
        client_secrets_file, scopes)
    credentials = flow.run_console()
    youtube = googleapiclient.discovery.build(
        api_service_name, api_version, credentials=credentials)

有什么帮助吗?谢谢

您可以使用 Service 帐户实现此目的。

https://googleapis.dev/python/google-api-core/latest/auth.html#service-accounts

服务帐号在技术上由开发者预授权。

如果 API 不支持服务帐户(在某些情况下),那么您可以尝试 oauth2 在您同意询问帐户所有者是否可以访问的情况下

因为您使用的是 YouTube API,您不能使用服务帐户,您需要使用 Oauth2。

Oauth2 可以 return 一种叫做刷新令牌的东西,如果你存储这个令牌,你的代码就可以在下次运行时访问刷新令牌,并使用刷新令牌以这种方式请求一个新的访问令牌不需要每次运行时都询问您来访问您的数据。

# The file token.pickle stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
if os.path.exists('token.pickle'):
    with open('token.pickle', 'rb') as token:
        creds = pickle.load(token)
# If there are no (valid) credentials available, let the user log in.
if not creds or not creds.valid:
    if creds and creds.expired and creds.refresh_token:
        creds.refresh(Request())
    else:
        flow = InstalledAppFlow.from_client_secrets_file(
            'credentials.json', SCOPES)
        creds = flow.run_local_server(port=0)
    # Save the credentials for the next run
    with open('token.pickle', 'wb') as token:
        pickle.dump(creds, token)

唯一包含刷新令牌的官方示例,我知道它是否在这里 Python quickstart 您需要为 YouTube 更改它,但您只需要授权代码,只需将其插入您的代码即可,您应该成为 GTG