We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Some methods in google-drive-api.js/noteStorageAPI.js use Google Drive API v3, but some use v2.
google-drive-api.js
noteStorageAPI.js
For example, function getTextFileContents in noteStorageAPI.js uses Google Drive API v3: https://github.com/DarthVanger/NeuralNotes/blob/master/src/storage/noteStorageAPI.js#L329
function getTextFileContents
const request = gapi.client.request({ path: '/drive/v3/files/' + requestParams.fileId,
While function updateFileName in google-drive-api.js uses Google Drive API v2 https://github.com/DarthVanger/NeuralNotes/blob/master/src/api/google-drive-api.js#L119
function updateFileName
let request = gapi.client.request({ 'path': '/drive/v2/files/' + fileId,
Go through all the methods and switch from Google Drive API v2 to v3 everywhere.
See the article about v2 vs v3 differences: https://developers.google.com/drive/api/v2/v3versusv2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Some methods in
google-drive-api.js
/noteStorageAPI.js
use Google Drive API v3, but some use v2.For example,
function getTextFileContents
innoteStorageAPI.js
uses Google Drive API v3:https://github.com/DarthVanger/NeuralNotes/blob/master/src/storage/noteStorageAPI.js#L329
While
function updateFileName
ingoogle-drive-api.js
uses Google Drive API v2https://github.com/DarthVanger/NeuralNotes/blob/master/src/api/google-drive-api.js#L119
Go through all the methods and switch from Google Drive API v2 to v3 everywhere.
See the article about v2 vs v3 differences: https://developers.google.com/drive/api/v2/v3versusv2
The text was updated successfully, but these errors were encountered: