mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
Configuration has been updated so the IDP requests also pass through an Authorization component. A new config option was added to choose which authorization scheme to use for the IDP.
26 lines
746 B
JSON
26 lines
746 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": "UnionCredentialsExtractor",
|
|
"extractors": [
|
|
{
|
|
"@type": "WaterfallHandler",
|
|
"handlers": [
|
|
{
|
|
"@type": "DPoPWebIdExtractor",
|
|
"originalUrlExtractor": {
|
|
"@type": "OriginalUrlExtractor"
|
|
}
|
|
},
|
|
{ "@type": "BearerWebIdExtractor" }
|
|
]
|
|
},
|
|
{ "@type": "PublicCredentialsExtractor" }
|
|
]
|
|
}
|
|
]
|
|
}
|