rest - Google Fusion Table API Authentication Issue -
i trying create simple database google fusion table, , make api calls browser update / fetch data. (the table private, set exportable.) when make call browser, following tutorial @ https://developers.google.com/fusiontables/docs/v1/getting_started#browserurl using syntax:
https://www.googleapis.com/fusiontables/v1/query?sql=select * {tableid}?key={apikey}
and replacing {tableid} , {apikey} values directly browser, following 403 response:
{ "error": { "errors": [ { "domain": "usagelimits", "reason": "dailylimitexceededunreg", "message": "daily limit unauthenticated use exceeded. continued use requires signup.", "extendedhelp": "https://code.google.com/apis/console" } ], "code": 403, "message": "daily limit unauthenticated use exceeded. continued use requires signup." } }
i've quadruple-checked api key , syntax, , checked on api console , does show multiple calls being made fusiontables api. need ensure authentication happens correctly, , data returned?
your second question mark should ampersand:
https://www.googleapis.com/fusiontables/v1/query?sql=select * {tableid}&key={apikey}
Comments
Post a Comment