From cdc8907e4f71c80526687c30879bd3c3a9822278 Mon Sep 17 00:00:00 2001 From: Noratrieb <48135649+Noratrieb@users.noreply.github.com> Date: Sun, 13 Jul 2025 15:38:14 +0200 Subject: [PATCH] not kidding --- idp/src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/idp/src/main.rs b/idp/src/main.rs index 67a9bf5..b421b0e 100644 --- a/idp/src/main.rs +++ b/idp/src/main.rs @@ -732,7 +732,8 @@ async fn connect_token( let id_token_headers = base64::prelude::BASE64_URL_SAFE.encode( serde_json::to_string(&json!({ "typ": "JWT", - "alg": "RS256" + "alg": "RS256", + "kid": "1" })) .unwrap(), );