SSF discovery document
GET
/.well-known/ssf-configuration
const url = 'http://localhost:8693/.well-known/ssf-configuration';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url http://localhost:8693/.well-known/ssf-configurationReturns the OpenID Shared Signals Framework discovery document. Clients use this to discover signal endpoints and capabilities.
Responses
Section titled “ Responses ”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"}