Skip to content

SSF discovery document

GET
/.well-known/ssf-configuration
curl --request GET \
--url http://localhost:8693/.well-known/ssf-configuration

Returns the OpenID Shared Signals Framework discovery document. Clients use this to discover signal endpoints and capabilities.

SSF configuration

Media type application/json
object
issuer
string
jwks_uri
string
delivery_methods_supported
Array<string>
configuration_endpoint
string
status_endpoint
string
Example
{
"issuer": "starfly",
"jwks_uri": "https://starfly.example.com/v1/identity/jwks",
"delivery_methods_supported": [
"https://schemas.openid.net/secevent/risc/delivery-method/push"
],
"configuration_endpoint": "https://starfly.example.com/v1/signals/stream",
"status_endpoint": "https://starfly.example.com/v1/signals/status"
}