Git Product home page Git Product logo

Comments (7)

bdemers avatar bdemers commented on May 30, 2024 1

Great idea!
Currently you can chain the methods though, so something link:

AuthenticationRequest request = authenticationClient.instantiate(AuthenticationRequest.class)
                .setRelayState("some-relay-state")
                .setUsername("[email protected]");

It requires a few extra lines though, are you thinking something like:

AuthenticationRequest request = AuthenticationRequestBuilder.instance()
                .setRelayState("some-relay-state")
                .setUsername("[email protected]")
                .build();

To customize the user-agent just implement a UserAgentProvider similar to this one: AuthnSdkUserAgentProvider

X-Forwarded-For is a little tricker, can you explain that use case in a little more detail?

from okta-auth-java.

mfulgo avatar mfulgo commented on May 30, 2024 1

Thanks, I found the instantiate method a little later on. Might be good to add to the readme. It's a viable work-around for now.

A small thing that I ran into with that was when instantiating a subclass, the order of setter calls matters:

// Works
client.instantiate(VerifyPassCodeFactorRequest.class)
  .setPassCode(passCode)
  .setStateToken(token);

// Does not compile
client.instantiate(VerifyPassCodeFactorRequest.class)
  .setStateToken(token) // returns a VerifyFactorRequest
  .setPassCode(passCode); // No such method on VerifyFactorRequest

My app is essentially acting as a login portal / gateway...
The X-Forwarded-For header requirement comes from the Okta API docs (See also.):

Okta supports the standard X-Forwarded-For HTTP header to forward the originating client’s IP address if your application is behind a proxy server or acting as a login portal or gateway.

Similarly, I need to set the User-Agent per request, which looks like it gets a bit tricky with the AuthnSdkUserAgentProvider:

If your application is acting as a gateway or proxy, you should forward the User-Agent of the originating client with your API requests.

from okta-auth-java.

bdemers avatar bdemers commented on May 30, 2024 1

@jmalickenexient no update yet.

Your comment will help us prioritize this though, Thanks!

from okta-auth-java.

bdemers avatar bdemers commented on May 30, 2024

All good points.
I'll get back to you on the headers πŸ€”

from okta-auth-java.

jmalickenexient avatar jmalickenexient commented on May 30, 2024

@bdemers What is the update on this? The ability to send a X-Forwarded-* header and User-Agent header containing the originating client User-Agent is needed to follow the Okta guidance on implementing a gateway application like @mfulgo mentioned.

from okta-auth-java.

robertjd avatar robertjd commented on May 30, 2024

@bdemers does this new README section cover what was needed by this issue? https://github.com/okta/okta-auth-java#setting-request-headers-parameters-and-device-fingerprinting

from okta-auth-java.

mfulgo avatar mfulgo commented on May 30, 2024

From my perspective, I think this issue is addressed with the RequestContext and the new README section.

from okta-auth-java.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.