If you are currently using Drive API v2, you can migrate to v3.
You should review the V2 to v3 reference for a complete map of all resource differences between versions.
The Drive API version is set differently for each language:
- For Java, you download the v3 library. See Drive API client library for Java. For an example, see Java Quickstart.
- For JavaScript, you define the version with the Discovery docs URL. For an example, see Browser Quickstart.
var DISCOVERY_DOCS = ["https://www.googleapis.com/discovery/v1/apis/drive/v3/rest"];
- For Python, you specify the version when you build the service object. For an example, see Python Quickstart.
service = build('drive', 'v3', credentials=creds)
- For Node.js, you define the version when you set the google.drive constructor. For an example, see Node.js Quickstart.
const drive = google.drive({version: 'v3', auth});