You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can get ID of the file from the response of ResumableUploadToGoogleDrive.Do()
ru.Do(resource, function (res, err) {
if (err) {
...
}
if (res.status == "Uploading") {
...
}
if (res.status == "Done")
console.log(res.result.id, res.result.name); // <= it logs id of the file and its name.
});
I'm not sure that the library can share the files for users now. But you can use current token for addition calls to API.
Hi,
This looks really good!
I wanted to know if there is anyway to generate and display a sharable link to these files that are getting uploaded?
Thanks,
Mahima
The text was updated successfully, but these errors were encountered: