Authenticate without GAS

To authenticate an application that is not behind GAS, for example a mobile app, you need to implement OAuth in a specific way.

In your application code, these functions need to be called in the following order:
  1. FetchOpenIDMetadata() to retrieve the metadata from the Identity Provider from the required URL.
  2. RetrievePasswordToken() to return the access token.
  3. initService() to register the access token.
See the code sample in OAuth access without GAS.