我构建了一个示例容器(Go的示例,https://cloud.google.com/run/docs/quickstarts/build-and-deploy)并部署到云运行(我未选中“允许未经身份验证的调用”)。
但是,当我打开服务的端点URL时,会得到一个401页面,
<html><head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<title>401 Unauthorized</title>
</head>
<body text=#000000 bgcolor=#ffffff>
<h1>Error: Unauthorized</h1>
<h2>Your client does not have permission to the requested URL <code>/</code>.</h2>
<h2></h2>
</body></html>
curl -H "Authorization: Bearer $(gcloud config config-helper --format 'value(credential.id_token)')" [SERVICE_URL]
有什么东西可以打开端点吗?
答案 0 :(得分:0)
请通过“ gcloud --version”确保gcloud版本至少为243.0.0
如果gcloud太旧,请使用“ gcloud组件更新”进行更新
[已更新]现在也可以使用Cloud Shell中的gcloud调用身份验证所需的Cloud Run服务。
谢谢!