Skip to content

Return WebFinger metadata.

GET
/.well-known/webfinger
Code sample: Shell / cURL
curl --request GET \
--url https://auth.example.com/.well-known/webfinger
resource
string

Successful JSON response.

Media type application/json
object
subject
required
string
links
required
Array<object>
object
rel
required
string
href
required
string format: uri
Example
{
"subject": "acct:[email protected]",
"links": [
{
"rel": "http://openid.net/specs/connect/1.0/issuer",
"href": "https://auth.example.com"
}
]
}