From b3e21097abfa3df8b4ebecdcfbcd23256faaf90d Mon Sep 17 00:00:00 2001 From: Aaron Coburn Date: Tue, 11 Jan 2022 15:31:07 -0500 Subject: [PATCH 1/2] Include post_logout_redirect_uris in JSON-LD context --- index.bs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/index.bs b/index.bs index 24c34df..8b27a1d 100644 --- a/index.bs +++ b/index.bs @@ -201,6 +201,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", @@ -259,6 +260,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" From 669e11e8de20810010e99f4c5600f1c029a5a81f Mon Sep 17 00:00:00 2001 From: Aaron Coburn Date: Tue, 11 Jan 2022 15:33:58 -0500 Subject: [PATCH 2/2] Update primer example --- primer/index.bs | 1 + 1 file changed, 1 insertion(+) diff --git a/primer/index.bs b/primer/index.bs index c051890..69bdadd 100644 --- a/primer/index.bs +++ b/primer/index.bs @@ -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",