gpt4 book ai didi

google-app-engine - 在 GAE 上用 Java 编写 Cron 作业来运行 BigQuery

转载 作者:行者123 更新时间:2023-12-02 04:31:44 25 4
gpt4 key购买 nike

我想在 GAE 上运行一个内部调用 BigQuery 的 cron 作业。

我目前可以运行 BigQuery,但我需要使用我的凭据登录。但我想在没有任何登录的情况下运行 BigQuery 的 cron 作业。

任何帮助将不胜感激。

最佳答案

我知道这不是您期望的 java。 secret 是使用 AppAssertionCredentials。这是 python 示例:

from apiclient.discovery import build
from oauth2client.appengine import AppAssertionCredentials
import httplib2
from google.appengine.api import memcache

scope = 'https://www.googleapis.com/auth/bigquery'

credentials = AppAssertionCredentials(scope=scope)

http = credentials.authorize(httplib2.Http(memcache))

return build("bigquery", "v2", http=http)

关于google-app-engine - 在 GAE 上用 Java 编写 Cron 作业来运行 BigQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22895104/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com