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
Hello, I am writing an add-on for Google Docs and I noticed my getAccessToken() server-side function takes too long and could impact UX moving between states. Right now, my app is structured in the following flow:
Storing the Access Token in PropertiesService.getUserProperties()
Closing the Modal and opening a Sidebar (main app)
Making another Google App Scripts Server Call to retrieve the Access Token from the Properties Service.
I'm trying to find a happy medium to minimize the amount of slow-running Google App Script calls to make sense like using fetch on the React App where needed.