Enter a Google Drive sharing URL, for example, https://drive.google.com/file/d/1kazyfB4JHoZSmczN-FBVXB4C8qN5b46G/view?usp=sharing:

Tutorial: How to get Google Drive sharing URL

Make sure your file's visibility in Google Drive is set to 'Anyone with the link'. If it's set to 'Restricted' then only people who are logged in to Google and have been granted access to the file. Huge Collections Of Google Drive Links 2020 1. By using this links you can download maximum every book available in the market. Might be few may miss still we assure you can get most useful and valuable books free in Google drive. More links will be updated soon, Learn more and stay happy. English Books – Novel Books.

Enter your Google Drive API Key:

Tutorial: How to apply for a Google Drive API key

If your file size is smaller than 100MB, the Google Drive API key is optional. If your file size is larger than 100MB, instead of downloading the file, Google will display a 'too large for Google to scan for virus' warning. To bypass the warning, you need to apply your Google Drive API key and enter it to the above input box.

Tutorials:

How to Get Google Drive Sharing URL

1. Upload your audio/video file to Google Drive, then right click on the media file in Google Drive and select the menu item Share

2. Click the Get Sharable link

3. Click the 'can view' arrow then select More from the drop down list

4. Select On - Public on the web

5. Click the button Copy Link, then click Done. The copied link is the Google Drive sharing URL of the file.

6. Use the Google Drive direct link generator tool to convert the URL to Google Drive Direct Link: Google Drive Direct Link Generator

The Drive API supports three types of downloads:

  • Downloads of files stored in Google Drive.
  • Downloads of exported versions of Google Workspacefiles (Google Docs, Sheets, Slides, and so on) in formats that your app canhandle.
  • Downloads of a file using the URL in the webContentLink property.
Note: The only way to download a Google Workspacefile is to export and download the file in a different file format.

The rest of this guide provides detailed instructions for performingthese types of downloads.

Download a file stored on Google Drive

To download a file stored on Google Drive, use thefiles.get method with the ID of the file todownload and the alt=media URL parameter. The alt=media URL parameter tellsthe server that a download of content is being requested.

The following code snippet shows how to download a file with the Drive APIclient libraries.

This snippet uses the executeMediaAndDownloadTo() method whichadds the alt=media URL parameter to the underlying HTTP request.

File downloads initiated from your app require at least read access to thefile. Your app must be authorized with a scope that allows file contentread access. For example, an app using the drive.readonly.metadata scopewould not be authorized to download the file contents. Users with editpermission may restrict downloading by read-only users by setting theviewersCanCopyContent field to false. To learn more about scopes, refer toAuthenticate your users.

Files identified as abusive(malware, etc.) are only downloadable by the owner. Additionally, the queryparameter acknowledgeAbuse=true must be included to indicate that the user hasacknowledged the risk of downloading potential malware. Your application shouldinteractively warn the user before using this query parameter.

Partial download

Partial download involves downloading only a specified portion of a file. Youcan specify the portion of the file you want to download by using a byte rangewith theRangeheader. For example:

Note: Partial downloads are not supported while exporting Google Documents

Download a Google Workspace Document

Download Google Workspace documents using thefiles.export method. Exports use the samealt=media approach as downloading other content in Drive.

The following examples demonstrate how to download aGoogle Workspace Document in PDFformat using the client libraries:

Java

Python

Node.js

The snippet declares the MIME type for export as application/pdf. For aa complete list of all MIME types supported for eachGoogle Workspace document, refer toGoogle Workspace documents and corresponding export MIME types

Viewing files in a browser

Get Download Link From Google Drive

If you want to allow a user to view a file directly in a webbrowser instead of through the API, use the webContentLink. You can eitherredirect a user to this URL, or offer it as a clickable link. The filemust be either owned by or shared with the user in order to view it.