Skip to content

Commit

Permalink
Merge pull request #67 from solid/post-logout-redirect-uri
Browse files Browse the repository at this point in the history
Include post_logout_redirect_uris in JSON-LD context
  • Loading branch information
elf-pavlik authored Jan 12, 2022
2 parents 6151e62 + 669e11e commit f14aea0
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
9 changes: 9 additions & 0 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -187,6 +187,7 @@ This example uses [JSON-LD ](https://www.w3.org/TR/json-ld11/) for the Client ID
"client_id": "https://app.example/id",
"client_name": "Solid Application Name",
"redirect_uris": ["https://app.example/callback"],
"post_logout_redirect_uris": ["https://app.example/logout"],
"client_uri": "https://app.example/",
"logo_uri" : "https://app.example/logo.png",
"tos_uri" : "https://app.example/tos.html",
Expand Down Expand Up @@ -245,6 +246,14 @@ The JSON-LD context is defined as:
"@set"
]
},
"post_logout_redirect_uris": {
"@id": "oidc:post_logout_redirect_uris",
"@type": "@id",
"@container": [
"@id",
"@set"
]
},
"require_auth_time": {
"@id": "oidc:require_auth_time",
"@type": "xsd:boolean"
Expand Down
1 change: 1 addition & 0 deletions primer/index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -293,6 +293,7 @@ Response:
"client_id": "https://decentphtos.example/webid#this",
"client_name": "DecentPhotos",
"redirect_uris": [ "https://decentphotos.example/callback" ],
"post_logout_redirect_uris": [ "https://decentphotos.example/logout" ],
"client_uri": "https://decentphotos.example/",
"logo_uri": "https://decentphotos.example/logo.png",
"tos_uri": "https://decentphotos.example/tos.html",
Expand Down

0 comments on commit f14aea0

Please sign in to comment.