Does Google AppScript (GAS) supports O-Auth 2.0 Implicit Grant-Type
问题 I'm trying to create a new Gmail add-on using Google Apps Script and trying to access third-party, non-Google API. For that I am using O-Auth 2.0 Implicit Grant-Type for authentication. This is how the AuthService looks like : function getOAuthService() { return OAuth2.createService('Podio O-Auth') .setAuthorizationBaseUrl('Base Url') .setTokenUrl('Token Url') .setClientId('clientId') .setClientSecret('clientSecret') .setParam('redirect_uri', 'https://script.google.com/macros/d/' + scriptID +