Files
CommunitySolidServer/config/ldp/authentication/dpop-bearer.json
2021-06-29 17:43:44 +01:00

21 lines
611 B
JSON

{
"@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld",
"@graph": [
{
"comment": "Supports DPoP and Bearer access tokens, or no credentials.",
"@id": "urn:solid-server:default:CredentialsExtractor",
"@type": "WaterfallHandler",
"handlers": [
{
"@type": "DPoPWebIdExtractor",
"originalUrlExtractor": {
"@type": "OriginalUrlExtractor"
}
},
{ "@type": "BearerWebIdExtractor" },
{ "@type": "EmptyCredentialsExtractor" }
]
}
]
}