# Google Drive VFS

## Google Drive VFS

### Scheme

The scheme you can use to access your files in Google Drive is

`googledrive://`

### Configuration

You need to generate a credentials file to make it work. Follow the [Google documentation](https://developers.google.com/drive/api/quickstart/java#authorize_credentials_for_a_desktop_application) to see how that is done. You also need to specify a folder in which security tokens are going to be saved. You can specify both in the Hop system configuration options. This can be done in the Hop GUI: go to the "Google Drive" tab in the Options dialog (from the Tools menu). You can also use the `hop-conf` script with the following options:

```highlight
      -gdc, --google-drive-credentials-file=<credentialsFile>
                            Configure the path to a Google Drive credentials JSON
                              file
      -gdt, --google-drive-tokens-folder=<tokensFolder>
                            Configure the path to a Google Drive tokens folder
```

Once done you will see a `googleDrive` entry in the central `hop-config.json` file:

```highlight
{
  "googleDrive" : {
    "credentialsFile" : "/path/to/google-drive-credentials.json",
    "tokensFolder" : "/path/to/tokens"
  }
}
```

When you try to run the first time you’ll see a message on the console where you executed Hop GUI or Hop Run saying something like:

```highlight
Please open the following address in your browser:
  https://accounts.google.com/o/oauth2/auth?access_type=offline&client_id=yourClientId&redirect_uri=http://localhost:8888/Callback&response_type=code&scope=https://www.googleapis.com/auth/drive
```

Open that URL in a browser and authenticate the given client ID. You’ll then get a token in the configured `tokens folder` with which you can work.

### Usage and testing

To test if the configuration works you can simply put a small CSV file in Google Drive and then use File/Open in Hop GUI. Then you type in googledrive:// as a file location and hit enter (or click the refresh button). Browse to the CSV file you uploaded and open it. If all is configured correctly you should be able to see the content in the Hop GUI.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.primeur.com/data-shaper-1.20/knowing-the-data-shaper-designer/apache-hop-virtual-file-system/google-drive-vfs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
