Google Drive
GoogleDrive_GenerateGoogleFilePickerUrl
Generate a URL where the user can grant this app access to specific Drive files. Opens Google's first-party Drive picker. The user selects which files to share with this application — it is not a sign-in or credential prompt. By default the picker shows files of all types; pass ``file_types`` to restrict it to specific types. Use this when a prior tool reported that a file was not found or access was denied, and the user expects the file to exist. After the user completes the picker flow, retry the prior tool.
Remote googledrive
Remote (network-hosted)
Other tools also called GoogleDrive_GenerateGoogleFilePickerUrl?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"file_types": {
"type": "array",
"items": {
"enum": [
"spreadsheet",
"slides",
"document",
"drawing",
"form",
"folder",
"image",
"video",
"audio",
"script",
"sites",
"pdf"
],
"type": "string"
},
"description": "Restrict the picker to these Google Drive file types. Defaults to None, which lets the user pick files of any type."
}
}
}