简体   繁体   中英

app.js JavaScript API on Google Drive

I'm investigating Google Drive's real-time API. In the QuickStart Tutorial the JavaScript library loaded is https://apis.google.com/js/api.js . The Drive documentation describes this library as the Google JavaScript API loader. This library seems to load the appropriate libraries for the services we need to interact with.

But when looking at QuickStart Tutorial for Google Drive (non realtime) it seems to load https://apis.google.com/js/client.js which I believe is the library documented here .

My question is what is the difference between api.js and client.js. They seem to have similar purpose although don't work in the same way. Is api.js for certain Google API's while client.js is for others? Is api.js documented somewhere like client.js is?

The content of those two files are (nearly) identical, and in fact it seems you can put any name before .js and it will load the same file. That said, I'd recommend sticking with the file names shown in the documentation, as those are guaranteed to work.

Use links only from the documentation!

Simple to check this:

1) Add to header of your page this script:

<script type="text/javascript" src="https://apis.google.com/js/client.js"></script>

Open DevTools -> Network I see:

对于client.js

2) Change link to other script

<script type="text/javascript" src="https://apis.google.com/js/api.js"></script>

Open DevTools -> Network

I see:

在此处输入图片说明

api.js is the core, when client.js is the module.

Here a completely different content: https://apis.google.com/js/platform.js

Additional information: https://stackoverflow.com/a/33281791/5754223

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM