solidstore
solidstore

Reputation: 125

Is OpenId Connect response_type id_token supported by WSO2 Identity Server 5.0

I'm trying to implement OpenId Connect in an SPA application with WSO2 Identity Server 5.0.0. I'm trying to use Implicit Flow but I always received an error from the identity server.

GET Request:

https://idserver:9443/oauth2/authorize?response_type=id_token&
    client_id=abcd&
    redirect_uri=https%3A%2F%2Flocalhost%3A44326%2F

Error Response:

invalid_request, Invalid response_type parameter value

Is response_type=id_token supported?

Upvotes: 2

Views: 1380

Answers (1)

Hos
Hos

Reputation: 457

With WSO2 Identity Server 5.0.0 OpenID Connect "id_token" response type is not implemented. The "Implicit" settings in the configuration only work for OAuth 2.0 "token" response type. You might wait until 5.1.0 or take the pain of implementing a patch for it.

Upvotes: 2

Related Questions