Я также не смог найти ответ на этот вопрос, поэтому скопируйте известный ответ Google. Надеюсь, это поможет.
def openid_configuration():
return dict(
issuer=current_app.config['BACKEND_URL'],
authorization_endpoint=f"{current_app.config['FRONTEND_URL']}/authorize",
device_authorization_endpoint=None,
token_endpoint=f"{current_app.config['BACKEND_URL']}/api/token",
userinfo_endpoint=None,
revocation_endpoint=None,
jwks_uri=f"{current_app.config['BACKEND_URL']}/api/public-key",
response_types_supported=["code"],
subject_types_supported=[],
id_token_signing_alg_values_supported=["RS256"],
scopes_supported=["openid", "email", "actions", "meta"],
token_endpoint_auth_methods_supported=["client_secret_post"],
claims_supported=["email", "iat", "iss", "name", "sub"],
code_challenge_methods_supported=[],
grant_types_supported=["authorization_code"]
)