Skip to main content
The Google Drive data connector allows you to connect any Google Drive file to Cloudglue, enabling you to use your files directly with our endpoints without manually uploading files.

Security

Security is paramount, we use Google Drive Authentication to get limited access to your files. This approach:
  • Maintains your control - You own and manage the connector
  • Follows Google Drive security patterns - Uses standard Google Drive authentication with minimum permissions
  • Easy to revoke - Simply delete the connector on our website

Setup

Setting up only takes a couple of clicks.
  1. Go to our app
  2. Click on “Connect” under Google Drive Google Drive Connector Architecture
  3. Follow the instructions to authorize the app
  4. You’re done! You can now use your Google Drive files directly with Cloudglue endpoints.
Ready to set up your data connector? Visit our app to configure your Google Drive connector.
Need help setting up your data connector? Contact our team directly for assistance with the setup process.

Managing Access

You maintain full control over your data access. Remove this data connector by doing any of the following:
  • Remove connection by revoking the connector on our website

How to use your Google Drive files with Cloudglue

To use Dropbox files, you can use the gdrive://file/ prefix in your Cloudglue API requests. Example:
gdrive://file/<file_id>
curl --request POST \
  --url https://api.cloudglue.dev/v1/describe \
  --header 'Authorization: Bearer YOUR_API_KEY' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "gdrive://file/<file_id>",
  "enable_summary": true,
  "enable_speech": true,
  "enable_visual_scene_description": true,
  "enable_scene_text": true,
}'