Create a SURFconext OAuthProvider (via OIDC discovery)
Source:R/providers__research_enterprise.R
oauth_provider_surfconext.RdConfigure institutional OIDC login through SURFconext. Register your service
with SURFconext before using its client credentials with oauth_client().
Usage
oauth_provider_surfconext(
environment = c("production", "test"),
name = "surfconext",
token_auth_style = NULL
)Arguments
- environment
SURFconext environment:
"production"(default) or"test".- name
Optional provider name (default
"surfconext").- token_auth_style
Authentication style for token requests: "header" (client_secret_basic), "body" (client_secret_post), or "public" (public client; send
client_idonly). The alias"none"is also accepted for"public". If NULL (default), it is inferred conservatively from discovery:"header"(client_secret_basic) is preferred, followed by"body"(client_secret_post), then"public"ifnoneis advertised and PKCE is enabled. Settoken_auth_style = "public"explicitly for a public client registration. JWT methods ("client_secret_jwt","private_key_jwt") and mTLS methods ("tls_client_auth","self_signed_tls_client_auth") must be selected explicitly. Seeoauth_provider()for the supported methods and their credentials.
Value
OAuthProvider object configured for SURFconext.
Details
Request the "openid" scope. Additional claims depend on your service's
agreed attribute release policy; requesting "email" or "profile" does
not guarantee those attributes will be released. Use the validated issuer
and sub to identify a user, rather than assuming email is present.
Test and production environments require their own service configuration.
See SURFconext for service providers.