You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I made http middleware which convert basic authentication to openid token for temporary backward compatibility
server extention read clientIP from attribute.
The main point for doing this from my pov is that the oauth2.Token itself cannot be unmarshaled from a JSON structure since expires_in doesn't map to expiry. This forces every library to implement its own Token structure.
Cant send extra attribute in password grant
So, we have to use
Echange
to sendclient_ip
I made http middleware which convert basic authentication to openid token for temporary backward compatibility
server extention read clientIP from attribute.
Server support forwarded request https://github.com/keycloak/keycloak-documentation/blob/master/server_installation/topics/clustering/load-balancer.adoc
But I have no idea how to set exchange request headers
req.Header.Set("X-Forwarded-Proto", "https");
req.Header.Set("X-Forwarded-For", clientIP);
The text was updated successfully, but these errors were encountered: