Server Smalltalk Guide : OAuth2.0 and OpenID Connect : OpenID Connect : SstGoogleOIDCAuthorizationCodeFlow
SstGoogleOIDCAuthorizationCodeFlow
Specific Google OpenID Connect options are implemented on this subclass.
Class Methods
None
Instance Methods
accessTypeOffline
  Unless this access type is configured for the request, a refresh token is not returned. The default is 'online'.
     More information: https://developers.google.com/identity/protocols/oauth2/web-server#offline
accessTypeOnline
  When this access type is configured for the request, a refresh token is not returned. This is the default.
     More information: https://developers.google.com/identity/protocols/oauth2/web-server#offline
includeGrantedScopes:
  If this parameter is provided with the value true, and the authorization request is granted, 
     the authorization will include any previous authorizations granted to this user/application combination 
     for other scopes.
     See https://developers.google.com/identity/openid-connect/openid-connect#authenticationuriparameters.
     
     Arguments:
        aBoolean: <Boolean>
organizationDomain:
  By including the Google Cloud organization domain (for example, mycollege.edu), 
     you can indicate that the account selection UI should be optimized for accounts at that domain. 
     To optimize for Google Cloud organization accounts generally instead of just one Google Cloud 
     organization domain, set a value of an asterisk (*): hd=*.
     
     More information: https://developers.google.com/identity/openid-connect/openid-connect#authenticationuriparameters
     
     Arguments:
        aString: <String>
Last modified date: 01/13/2026