From 154fc941e2a9f49e0f130eb956ba47209d5e17c2 Mon Sep 17 00:00:00 2001 From: Diego Ciangottini Date: Tue, 18 Jul 2023 10:10:32 +0000 Subject: [PATCH] fix scopes for refresh token --- scripts/refresh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/refresh.py b/scripts/refresh.py index cf28a69c..8e0b9313 100644 --- a/scripts/refresh.py +++ b/scripts/refresh.py @@ -34,7 +34,7 @@ "grant_type": "client_credentials", "username": "not_needed", "password": "not_needed", - "scope": "openid profile email iam groups", + "scope": "openid profile email iam groups groups:intw", "aud": audience } r = requests.post(iam_server+"token", data=request_data)