From e452d624188af43242eb326c731b5eec4554b478 Mon Sep 17 00:00:00 2001 From: Justin Poehnelt Date: Wed, 19 Apr 2023 18:55:02 -0600 Subject: [PATCH] fix: remove api key closes #69 --- drive/quickstart/index.html | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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;