Dan*_*Dan 2 python google-authentication google-cloud-platform google-cloud-run
我正在尝试访问安全的云运行服务。如果我在我的机器上使用 SDK 尝试它工作正常:
curl --header "Authorization: Bearer $(gcloud auth print-identity-token)"
但是,我无法使用 Python API 使用相同的服务帐户使其工作,我尝试使用 google-auth 获取访问令牌,但这给了我 401 身份验证错误。这是我用来尝试获取令牌的代码:
import google.auth
import google.auth.transport.requests
scopes = ['https://www.googleapis.com/auth/cloud-platform']
creds, projects = google.auth.default(scopes=scopes)
auth_req = google.auth.transport.requests.Request()
creds.refresh(auth_req)
# then using creds.token
Run Code Online (Sandbox Code Playgroud)
查看文档:https : //cloud.google.com/run/docs/authenticating/service-to-service#calling_from_outside_gcp它说要遵循此处的示例代码:https : //cloud.google.com/iap/docs /authentication-howto#iap_make_request-python我似乎无法按照指南进行操作,因为它说启用 IAP 但似乎 IAP 仅适用于应用程序引擎而不适用于云运行?
有没有人对此有任何建议?
谢谢
好吧,似乎有一个 IDTokenCredentials 类适用于此,因为它使用 Open ID Connect ID Tokens 而不是 OAuth 2.0 Access Tokens:
https://google-auth.readthedocs.io/en/latest/reference/google.oauth2.service_account.html
from google.oauth2 import service_account
from google.auth.transport.requests import AuthorizedSession
service_url = 'example.com'
key_file = 'key.json'
credentials = service_account.IDTokenCredentials.from_service_account_file(
key_file, target_audience=service_url)
authed_session = AuthorizedSession(credentials)
response = authed_session.get(service_url)
Run Code Online (Sandbox Code Playgroud)
这很令人困惑,因为我在文档中没有看到它,并且它让我想到了关于 IAP 的其他一些东西,我认为这不适用于 Cloud Run。
| 归档时间: |
|
| 查看次数: |
1557 次 |
| 最近记录: |