Is OpenId Connect response_type id_token supported by WSO2 Identity Server 5.0

时光怂恿深爱的人放手 提交于 2020-01-21 09:22:26

问题


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?


回答1:


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.



来源:https://stackoverflow.com/questions/29120850/is-openid-connect-response-type-id-token-supported-by-wso2-identity-server-5-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!