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

Popular posts from this blog

html5 - What is breaking my page when printing? -

html - Unable to style the color of bullets in a list -

c# - must be a non-abstract type with a public parameterless constructor in redis -