Reputation: 23
I have a Google Script that uses the Advanced Drive API service and am now looking to convert this script into an Add-on.
However the Drive API needs to be enabled manually by the user before using the service inside the Apps Script.
Is it possible to use the advanced APIs inside Apps Script. Thank you.
Upvotes: 1
Views: 103
Reputation: 5782
Yes, you can use advanced services in Add-ons. It only has to be enabled once by you before you publish your script to the Add-on store. All script requests using that advanced service will come out of the quota for the console project associated with your add-on.
Upvotes: 2