4

我一直在尝试将我的项目迁移到新的 API,但在尝试如下 SQL 查询时出现以下错误:

https://www.googleapis.com/fusiontables/v1/query?sql=SELECT * FROM 1KxVV0wQXhxhMScSDuqr-0Ebf0YEt4m4xzVplKd4&key=myKey

这是返回的内容:

{
 "error": {
  "errors": [
   {
    "domain": "usageLimits",
    "reason": "accessNotConfigured",
    "message": "Access Not Configured"
   }
  ],
  "code": 403,
  "message": "Access Not Configured"
 }
}

但是,以下查询确实有效: https ://www.googleapis.com/fusiontables/v1/tables/1bTX-w0Lt6nT8jq4R0q2pwFvuN_X5iPDOKHWFhw/columns?key=myKey

我究竟做错了什么?

4

2 回答 2

6

您还需要确保 Fusion Table 是可导出的。

File → About this table
       → Edit table information
         → Check the "Allow download" checkbox
于 2012-11-05T13:56:46.983 回答
2

我在 API 控制台中启动了一个新项目,并使用新的 API 密钥修复了它,奇怪的是。

于 2012-07-30T08:52:25.663 回答