<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-M74D8PB" height="0" width="0" style="display:none;visibility:hidden">
Loading
Skip to NavigationSkip to Main Content
0D54z0000AA0Zd0CQFOkta Classic EngineIntegrationsAnswered2024-06-06T21:32:52.000Z2024-06-05T05:03:55.000Z2024-06-06T21:32:52.000Z
Unable to retrieve an access token for the Identity Provider when my OIDC server /token endpoint is called.

Looking at the systems logs for my Identity Provider, I see the error Authenticate user with social login FAILURE: Unable to retrieve an access token for the Identity Provider. I am trying to get some more info if this is a formatting issue or etc.

 

The current response from my /token endpoint is

{

"access_token": "78718f64-30de-4060-a444-0ff153e3efaa",

"token_type": "Bearer",

"id_token": "eyJhbGciOiJSUXChIyUHWlBDCcbNWl3OKz3b8z5beVsS53vMVsd62hxjA7Mi2KsiasHnpmoXxF7RvnHZQkqhUTgyiB3Ev1uhGJCPqU3ed4RG3tOuaaRu8Omgn-pI8PNGmODWMEPBTEYbAF-2aT4e5EFwS48ht1ZX9c9SWmd8BiQw4guuB8CmEvNu8T8NPIiLYh9R2FJi9VIdFhY9OsJrsia6vP0Uws3Rp8GkmiDEMIiB6m736hL2TKfIuDA","expires_in": 36000,"scope": "openid"

}

The ID Token is created as such in Python, where the access token is currently a UUID.id_token = jwt.encode(claims, jwk_key.to_dict(),algorithm='RS256', access_token=access_token)

 

Do advise on how I can get more info on this log!


This question is closed.
Loading
Unable to retrieve an access token for the Identity Provider when my OIDC server /token endpoint is called.