I have the greatest trouble finding information about what I need. I guess I'm not looking in the right places since this is quite basic. Anyway.
Somebody somewhere has created a Google Sheet anyone with the link can access. I want to retrieve the value of a given cell.
I'd like to be able to do the following in JS from a simple web page (or server side in PHP, but preferably JS):
AGoogleApiIHopeExists.setApiKey("<MY_API_KEY");
var value = AGoogleApiIHopeExists
.getSheet("AJEIDNNS6886SDHSKN67HBS7BA6SD555DSHD")
.getTab("MyTabInsideMySheet")
.getCell("B:17");
I'm afraid I'm a bit naive to think this is possible...
If not, where should I look for more info?