Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

custom exchange request attribute/header #533

Open
lunicon opened this issue Dec 30, 2021 · 3 comments
Open

custom exchange request attribute/header #533

lunicon opened this issue Dec 30, 2021 · 3 comments

Comments

@lunicon
Copy link

lunicon commented Dec 30, 2021

Cant send extra attribute in password grant

config.PasswordCredentialsToken(ctx, username, password)

So, we have to use Echange to send client_ip

token, err = config.Exchange(ctx, "",
  oauth2.SetAuthURLParam("grant_type", "password"),
  oauth2.SetAuthURLParam("username", username),
  oauth2.SetAuthURLParam("password", password),
  oauth2.SetAuthURLParam("scope", strings.Join(config.Scopes, " ")),
  oauth2.SetAuthURLParam("client_ip", clientIP))

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);

@andig
Copy link
Contributor

andig commented Sep 23, 2022

+1 for this request. Required for polestar api. Some similarity to #483

@andig
Copy link
Contributor

andig commented Jul 17, 2023

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.

@lrascao
Copy link

lrascao commented Jan 25, 2024

+1 for this, auth0 requires the audience url value to be present or else returns malformed tokens

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants