在节点js中使用REST参考Google云存储我在邮递员中收到此错误我收到以下错误。 网址: https://datastore.googleapis.com/v1/projects/ {专案编号}:allocateIds Requset Body:
{
"keys": [
{
"partitionId": {
"namespaceId": "default",
"projectId": "superb-watch-172816"
},
"path": [
{
"kind": "User50records"
}
]
}
]}
我收到了这个错误:
{
"error": {
"code": 401,
"message": "Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project.",
"status": "UNAUTHENTICATED"
}
}
答案 0 :(得分:1)
不允许对Cloud Datastore进行真正的匿名调用。您必须以某种方式向服务器表明自己的身份。最低限度是附加API密钥,这基本上是与某个项目或其他项目相关联的声明。如果您要访问任何人都无法公开查看的数据,您还需要提供某种身份验证,这通常通过OAuth完成。
所以,最小工作量,假设这是公共数据:获取an API key,然后附加" key = myKey"查询您网址的参数。