KeyCloak Forgot password Email link

前端 未结 1 1083
既然无缘
既然无缘 2021-01-20 13:20

We are implementing Authentication using keycloak. Specifically for forgot password option: When user clicks on Forgot password option, and provides user name, an email wil

1条回答
  •  孤街浪徒
    2021-01-20 13:37

    Got this resolved after multiple discussion with Redhat team. Below are the steps followed

    1. We were using RH SSO 7.0.x: Added proxy-address-forwarding=true as below.

    The server didn't start because this tag is not available in Keycloak 7.0.x. as confirmed by Redhat.

    1. Did upgrade to RH SSO 7.2.0 and the same flag addition worked. Forgot password email content has the https:///auth/realms/archcap-au/login-actions/action-token?key=

    Before change:

        header=x-forwarded-host= 
        header=Host= 
    

    After Change:

        header=x-forwarded-host= 
        header=Host= 
    

    the tag would retain the forwarded host header.

    0 讨论(0)
提交回复
热议问题