Retrieve the OpenID Connect user identifier

Follow these steps to retrieve the OpenID Connect Single sign-on (SSO) user identifier in your Genero application.

To retrieve the OpenID Connect user identifier, add this code to your Genero application:

Once the user has been successfully authenticate and before starting the proxy, the OpenID Connect service sets all attributes coming from the IdP with the prefix OIDC_. (OIDC stands for OpenID Connect).

Note: Even if there are no attributes being sent by the IdP (maybe because the user has not allowed the Google console API to send them), the OIDC_SUB attribute will always be available. This attribute is an opaque value representing the user subject at IdP.
For example, if you set email in the SCOPE parameter of your application configuration (see Quick start: Set up OpenID Connect in the GAS), you will have an attribute called OIDC_email set that is then retrievable with the instruction in your application.
LET userEmail = fgl_getenv("OIDC_email")