Hi,
I am trying to login with password and add a nonce value in the related access token
I am using the following parameters
data_call = {“grant_type” : “password”,
‘username’ : username,
‘password’:password,
‘client_id’:‘flask2’,
‘scope’:‘openid microprofile-jwt profile’,
‘state’: ‘state_AW0815’,
‘nonce’: 1234,
‘response_type’:‘code’
}
req3 = requests.post(KEYCLOAK_URL, data=data_call)
But the result does not contain the nonce value.
I am not able to find how and when the nonce value is added to the access token.
Any help or pointer is highly appreciated.
Thanks
Andrea