diff --git a/drive/quickstart/index.html b/drive/quickstart/index.html
index 94da982..672df31 100644
--- a/drive/quickstart/index.html
+++ b/drive/quickstart/index.html
@@ -35,9 +35,8 @@
/* exported handleAuthClick */
/* exported handleSignoutClick */
- // TODO(developer): Set to client ID and API key from the Developer Console
+ // TODO(developer): Set to client ID from the Developer Console
const CLIENT_ID = '';
- const API_KEY = '';
// Discovery doc URL for APIs used by the quickstart
const DISCOVERY_DOC = 'https://www.googleapis.com/discovery/v1/apis/drive/v3/rest';
@@ -66,7 +65,6 @@
*/
async function initializeGapiClient() {
await gapi.client.init({
- apiKey: API_KEY,
discoveryDocs: [DISCOVERY_DOC],
});
gapiInited = true;