Files
CommunitySolidServer/config/ldp/authentication/dpop-bearer.json
2022-02-23 11:09:41 +01:00

26 lines
746 B
JSON

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