有没有办法在没有每次身份验证的情况下使用 Google Api?

Tat*_*uck 3 python google-api youtube-api google-oauth google-api-python-client

我尝试在 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)
Run Code Online (Sandbox Code Playgroud)

有什么帮助吗?谢谢

DaI*_*mTo 5

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

Oauth2 可以返回称为刷新令牌的东西,如果您存储此令牌,则您的代码可以在下次运行时访问刷新令牌,并使用刷新令牌请求新的访问令牌,这样就不需要每次都询问您运行以访问您的数据。

# 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)
Run Code Online (Sandbox Code Playgroud)

唯一包含刷新令牌的官方示例,我知道如果在这里Python 快速入门, 您需要为 YouTube 更改它,但真正需要的只是验证代码,只需将其插入您的代码中,您应该是 GTG