2023-10-19 09:13:48 +02:00

31 lines
1015 B
JSON

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