Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions example/satosa/pyeudiw_backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ config:
authorization:
client_id: # this field if not set will be autopopulated using internal variables base_url and name using the following format: "<base_url>/<name>"
auth_iss_id: # this field if not set will be set to client_id in the authz request
client_id_scheme: x509_san_dns
url_scheme: haip
scopes:
- pid-sd-jwt:unique_id+given_name+family_name
Expand Down
2 changes: 1 addition & 1 deletion pyeudiw/openid4vp/authorization_request.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def build_authorization_request_claims(
_iss = client_id

claims = {
"client_id_scheme": "http", # that's federation.
"client_id_scheme": authorization_config.get("client_id_scheme", "http"),
"client_id": client_id,
"response_mode": authorization_config.get(
"response_mode", ResponseMode.direct_post_jwt
Expand Down
Loading