2

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?

Community
  • 1
  • 1
solidstore
  • 105
  • 1
  • 14
  • Did you find a resolution to this problem? We encountered the same issue and wondering if there's workaround for this or we need to switch to a different STS. – bychkov Apr 13 '15 at 20:25
  • I'm having the same problem. I thought WSO2 fully supported OpenIDConnect. – Faraway Nov 10 '15 at 04:53

1 Answers1

2

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.

Hans Z.
  • 50,496
  • 12
  • 102
  • 115
Hos
  • 447
  • 4
  • 11
  • We're still using 5.0.0 If I can't use "id_token", then is there a way that i could use "token" response type first (just using it as 'implicit' OAuth2 grant type), and acquire the JWT id_token in another call ? – Faraway Nov 10 '15 at 04:56