Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Example Outlook 365 OpenID YAML configuration:

Code Block
spring:
  security:
    oauth2:
      client:
        provider:
          tia:
            issuer-uri: https://login.microsoftonline.com/<tenant>/v2.0 
            user-name-attribute: name
        registration:
          tiaviewer:
            provider: azure
            client-id: <clientId>
            client-secret: <clientSecret>
            scope:
              - openid
              - email
              - profile

tia:
  security:
    oidc: authorization_code

...