Fanatics EcoSystem
  • Fanatics ID
  • Loyalty
  • Start Here
  • Setup
  • Single Sign On
    • Authorization
    • Code Exchange
    • Refresh Token
    • Logout
    • ID Token
    • Environments
    • Scopes
    • Account Management
    • OpenID Config
  • Server to Server
    • Authentication
    • Environments
    • Scopes
  • Point of Sale
    • Assertion Usage
Powered by GitBook
On this page
  1. Single Sign On

OpenID Config

PreviousAccount ManagementNextServer to Server

Last updated 3 months ago

Request

URL

/.well-known/openid-configuration

Response

If successful, this operation returns HTTP status code 200, with the configuration information for the specified OpenID Connect provider. The full documentation for this endpoint can be found at .

Documentation

openid.net

OpenID Provider Configuration Information

get

Return OpenID Provider Configuration Information as described in https://openid.net/specs/openid-connect-discovery-1_0.html#ProviderConfig

Responses
200
OpenID Provider Configuration Information
application/json
get
GET /.well-known/openid-configuration HTTP/1.1
Host: 
Accept: */*
200

OpenID Provider Configuration Information

{
  "authorization_endpoint": "text",
  "claims_supported": [
    "text"
  ],
  "grant_types_supported": [
    "text"
  ],
  "id_token_signing_alg_values_supported": [
    "text"
  ],
  "issuer": "text",
  "jwks_uri": "text",
  "registration_endpoint": "text",
  "response_types_supported": [
    "text"
  ],
  "scopes_supported": [
    "text"
  ],
  "subject_types_supported": [
    "text"
  ],
  "token_endpoint": "text",
  "token_endpoint_auth_methods_supported": [
    "text"
  ],
  "userinfo_endpoint": "text"
}
  • Request
  • URL
  • Response
  • Documentation
  • GETOpenID Provider Configuration Information