diff --git a/samples/drive/README.md b/samples/drive/README.md index ad19b81900..60953c1a3b 100644 --- a/samples/drive/README.md +++ b/samples/drive/README.md @@ -5,12 +5,26 @@ These samples allow you to list, download, and upload files from Google Drive. ## Running the samples ### **Note: Node.js version 8 or greater is required to run samples.** -Set the following values in `oauth2.keys.json` (up one directory): +Set the following values in `oauth2.keys.json` (up one directory) under the `web` key: +* `redirect_uris` * `client_id` * `project_id` * `client_secret` +Your file should look like this: + +```json +{ + "web" : { + "redirect_uris": ["http://localhost:3000/oauth2callback"], + "client_id": "", + "client_secret": "", + "project_id": "" + } +} +``` + __Run the `quickstart.js` sample:__ This sample will list the files in the user's Google Drive.