2

我正在尝试做一个简单的表格调用

https://www.googleapis.com/fusiontables/v1/tables/.......

但无论我做什么我都无法超越

{
 "error": {
  "errors": [
   {
    "domain": "usageLimits",
    "reason": "dailyLimitExceededUnreg",
    "message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup.",
    "extendedHelp": "https://code.google.com/apis/console"
   }
  ],
  "code": 403,
  "message": "Daily Limit for Unauthenticated Use Exceeded. Continued use requires signup."
 }
}

我已经尝试在有和没有浏览器密钥的情况下发出请求。我已经尝试过“在网络上公开”和“任何知道链接的人”。设置了“允许下载”标志。我不确定还需要设置什么?

编辑:

完整的网址是

https://www.googleapis.com/fusiontables/v1/tables/<table id>&key=<browser key>

我也尝试过 SELECT,结果相同。

4

2 回答 2

0

您需要一个 API 密钥,您可以在此处阅读更多相关信息https://developers.google.com/fusiontables/docs/v1/using#APIKey

于 2013-10-25T16:57:08.627 回答
0

您的 URL 中的语法不正确。参考文档中的示例对我有用

于 2013-10-29T03:19:37.057 回答