From c6d0cd2b5b2a0b94a12e29fb6804c360e5086ca0 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Wed, 29 Nov 2023 11:50:24 +0100 Subject: [PATCH] fix demand authorization --- oidc4vp/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/oidc4vp/models.py b/oidc4vp/models.py index 94c30c5..37a18f9 100644 --- a/oidc4vp/models.py +++ b/oidc4vp/models.py @@ -82,7 +82,7 @@ class Organization(models.Model): url=self.response_uri.strip("/"), redirect_uri=settings.RESPONSE_URI ) - auth = (self.my_client_id, self.client_secret) + auth = (self.my_client_id, self.my_client_secret) return requests.get(url, auth=auth) def __str__(self):