You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
998 B
19 lines
998 B
/* eslint-disable sort-keys */
|
|
export const metaData: any = {
|
|
issuer: 'https://www.auth.test.insports.tv',
|
|
authorization_endpoint: 'https://www.auth.test.insports.tv/authorize',
|
|
// device_authorization_endpoint: null,
|
|
token_endpoint: 'https://www.auth.test.insports.tv/token',
|
|
userinfo_endpoint: 'https://www.auth.test.insports.tv/userinfo',
|
|
revocation_endpoint: 'https://www.auth.test.insports.tv/certs',
|
|
jwks_uri: 'https://www.auth.test.insports.tv/certs',
|
|
response_types_supported: ['id_token token', 'id_token'],
|
|
subject_types_supported: [],
|
|
id_token_signing_alg_values_supported: ['RS256'],
|
|
scopes_supported: ['openid', 'email', 'actions', 'meta'],
|
|
token_endpoint_auth_methods_supported: ['client_secret_post', 'client_secret_basic', 'none'],
|
|
claims_supported: ['email', 'iat', 'iss', 'name', 'sub'],
|
|
code_challenge_methods_supported: [],
|
|
grant_types_supported: ['refresh_token', 'password'],
|
|
end_session_endpoint: 'https://www.auth.test.insports.tv/logout',
|
|
}
|
|
|