|
|
|
|
@ -1,14 +1,12 @@ |
|
|
|
|
import type { OidcMetadata } from 'oidc-client' |
|
|
|
|
|
|
|
|
|
/* eslint-disable sort-keys */ |
|
|
|
|
export const metaData: OidcMetadata = { |
|
|
|
|
issuer: 'https://www.auth.test.insports.tv', |
|
|
|
|
authorization_endpoint: 'https://www.auth.test.insports.tv/authorize', |
|
|
|
|
export const metaData: any = { |
|
|
|
|
issuer: 'https://api.auth.test.insports.tv', |
|
|
|
|
authorization_endpoint: 'https://api.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', |
|
|
|
|
token_endpoint: 'https://api.auth.test.insports.tv/token', |
|
|
|
|
userinfo_endpoint: 'https://api.auth.test.insports.tv/userinfo', |
|
|
|
|
revocation_endpoint: 'https://api.auth.test.insports.tv/certs', |
|
|
|
|
jwks_uri: 'https://api.auth.test.insports.tv/certs', |
|
|
|
|
response_types_supported: ['id_token token', 'id_token'], |
|
|
|
|
subject_types_supported: [], |
|
|
|
|
id_token_signing_alg_values_supported: ['RS256'], |
|
|
|
|
@ -17,26 +15,5 @@ export const metaData: OidcMetadata = { |
|
|
|
|
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', |
|
|
|
|
token_endpoint_auth_signing_alg_values_supported: [], |
|
|
|
|
check_session_iframe: '', |
|
|
|
|
registration_endpoint: '', |
|
|
|
|
acr_values_supported: [], |
|
|
|
|
userinfo_signing_alg_values_supported: [], |
|
|
|
|
userinfo_encryption_alg_values_supported: [], |
|
|
|
|
userinfo_encryption_enc_values_supported: [], |
|
|
|
|
id_token_encryption_alg_values_supported: [], |
|
|
|
|
id_token_encryption_enc_values_supported: [], |
|
|
|
|
request_object_signing_alg_values_supported: [], |
|
|
|
|
display_values_supported: [], |
|
|
|
|
claim_types_supported: [], |
|
|
|
|
claims_parameter_supported: false, |
|
|
|
|
service_documentation: '', |
|
|
|
|
ui_locales_supported: [], |
|
|
|
|
introspection_endpoint: '', |
|
|
|
|
frontchannel_logout_supported: false, |
|
|
|
|
frontchannel_logout_session_supported: false, |
|
|
|
|
backchannel_logout_supported: false, |
|
|
|
|
backchannel_logout_session_supported: false, |
|
|
|
|
response_modes_supported: [], |
|
|
|
|
end_session_endpoint: 'https://api.auth.test.insports.tv/logout', |
|
|
|
|
} |
|
|
|
|
|