Trying to understand how I should go about referencing the google apis for a static page web app. I am confused.
- I am unsure where the complete documentation is as I have stumbled upon a few broken links in this repository already
- These tutorial reference 2 different urls yet seem to be related to this repository
https://developers.google.com/identity/sign-in/web/reference#gapiauth2initparams
<script src="https://apis.google.com/js/platform.js?onload=init" async defer></script>
https://developers.google.com/sheets/api/quickstart/js
<script async defer src="https://apis.google.com/js/api.js"
onload="this.onload=function(){};handleClientLoad()"
onreadystatechange="if (this.readyState === 'complete') this.onload()">
What are the differences? what url should one use? does it matter? Should one rather use the node client rather than web and compile it?