Skip to content
This repository was archived by the owner on Jun 1, 2023. It is now read-only.

Commit 57330a1

Browse files
committed
post_logout_redirect_uri not post_logout_redirect_uris
1 parent 28f8751 commit 57330a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/oidcrp/oidc/registration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def create_callbacks(issuer: str,
8080
res["request_uris"] = f"{base_url}/req_uri/{_hex}"
8181

8282
if backchannel_logout_uri or frontchannel_logout_uri:
83-
res["post_logout_redirect_uri"] = [f"{base_url}/session_logout/{_hex}"]
83+
res["post_logout_redirect_uri"] = f"{base_url}/session_logout/{_hex}"
8484

8585
if backchannel_logout_uri:
8686
res["backchannel_logout_uri"] = f"{base_url}/bc_logout/{_hex}"

0 commit comments

Comments
 (0)