FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. Tags
    3. faq
    Log in to post
    • All categories
    • danD

      Is there any way to blacklist IPs?

      Q&A
      • networking security blacklist faq • • dan
      2
      0
      Votes
      2
      Posts
      7.1k
      Views

      danD

      Not currently. We've discussed it and haven't ruled it out.

      However there are so many products, both free and commercial, that do this well.

      You can always put a firewall on the server that FusionAuth is running or put a proxy in front of it.

    • danD

      How can I turn on two factor authentication?

      Q&A
      • twilio two factor faq • • dan
      4
      0
      Votes
      4
      Posts
      5.0k
      Views

      danD

      @denisskaletti Thanks for feedback. I removed your link because it seemed like spam. We welcome useful links that are about using FusionAuth, please check out the blog category and post there.

    • danD

      Is there any easy way to save and restore settings to different environments?

      Q&A
      • setup development settings faq • • dan
      2
      0
      Votes
      2
      Posts
      5.8k
      Views

      danD

      You could look at kickstart: https://fusionauth.io/docs/v1/tech/installation-guide/kickstart

      This would be a good fit if the other devs fusionauth instances are going to be starting from scratch.

      Otherwise you might want to vote for https://github.com/FusionAuth/fusionauth-issues/issues/560 which talks about a different path forward (which is as of now unimplemented).

    • danD

      Can I query a user on their user data?

      Q&A
      • user user-data search query faq • • dan
      4
      0
      Votes
      4
      Posts
      8.5k
      Views

      danD

      @le-nnyburkdoll

      This guide might be helpful to you: https://fusionauth.io/docs/v1/tech/guides/user-search-with-elasticsearch

      Thanks,
      Dan

    • danD

      Can we set multiple "aud" claims in FusionAuth?

      Q&A
      • lambda claims jwt faq • • dan
      2
      0
      Votes
      2
      Posts
      3.5k
      Views

      danD

      We do not support this directly in FusionAuth, but you could use a Lambda to set the aud claim to whatever you want.

      The specification allows for a string value, or an array of string values, so you could create a Lambda with something like: jwt.aud = [ 'foo', 'bar' ];

      More about Lambdas and JWTs here: https://fusionauth.io/docs/v1/tech/lambdas/jwt-populate

    • danD

      I need feature ABC and am willing to pay you to build it. How can I get in touch?

      Q&A
      • contact us customization faq proserve sales • • dan
      2
      0
      Votes
      2
      Posts
      9.6k
      Views

      danD

      While we continue to improve FusionAuth (and will always have a free community edition), if you are interested in paying for a specific feature to be built, we're happy to chat. Please contact us and we'll be happy to discuss costs and timelines.

    • danD

      Can we search on userId?

      Q&A
      • faq user search admin ui • • dan
      2
      0
      Votes
      2
      Posts
      5.6k
      Views

      danD

      You can search on the user id. While it doesn't say that in the placeholder, it works.

    • danD

      How should I validate access tokens?

      Q&A
      • access tokens validation faq • • dan
      2
      0
      Votes
      2
      Posts
      10.7k
      Views

      danD

      There are a few things to consider.

      how long tokens live for what happens if permisssion are modified in FusionAuth but the protected resource still allows access? any performance worries due to a large number of accessToken validation calls being made by the protected resource.

      With the first approach (validating the access token without communicating with FusionAuth) the holder of the token will be able to access your API as long as the token is valid (unless the API server communicates periodically with FusionAuth to check the validity). In addition, changes to user privileges won't take place until the JWT expires and the client retrieves a new access token using the refresh token.

      With the second approach, if a token is revoked in FusionAuth (if for instance the user is disabled) the access is cut off immediately. The cost is that you're making an additional network call every time, which has a performance impact. Note that if you could use the userinfo endpoint instead of the token if you want updated user claims. The token endpoint isn't going to give you that information, just a yes/no depending on if the token is valid.

      So it's hard to make a recommendation without knowing what the consequences of unauthorized access to your API or protected resource would be. It also would be helpful to know the expected traffic; if it is expected to be low, the performance impact of the second approach will be minimal.

    • danD

      Is there a way to upload images for custom login page themes?

      Q&A
      • theme login faq • • dan
      2
      0
      Votes
      2
      Posts
      10.7k
      Views

      B

      @dan Last week ago I am facing that issue and I am still not got any solution.

    • danD

      What is Kickstart?

      Q&A
      • kickstart faq • • dan
      1
      0
      Votes
      1
      Posts
      6.7k
      Views

      No one has replied

    • danD

      Is FusionAuth both an OIDC Relying Party and and Identity Provider?

      Q&A
      • faq oidc standards • • dan
      2
      0
      Votes
      2
      Posts
      3.3k
      Views

      H

      @dan
      I faced similar kind of issue last time, I am still searching for some proper solution.

    • danD

      How do you assign a theme to an application?

      Q&A
      • theme faq application • • dan
      5
      0
      Votes
      5
      Posts
      5.9k
      Views

      danD

      @fred-fred

      Hiya,

      In addition to what @maciej-wisniowski suggested, if you have a paid license you can now have application specific themes (one theme per application; if no application theme is specified, it defaults to the tenant).

      You can see how that works in the sandbox environment (sandbox.fusionauth.io). I believe that feature landed in 1.27.0.

      You can buy a licensed edition here.

    • danD

      Each user has one password, correct?

      Q&A
      • user faq • • dan
      2
      0
      Votes
      2
      Posts
      7.6k
      Views

      danD

      That is correct. Each user can have one email address, one username, or both. Either of these values can be used to login, and therefore the values are unique within the tenant.

      We do have a username field on a registration, but it is not used for login.

      There's a github issue open for multiple identities: https://github.com/fusionauth/fusionauth-issues/issues/1

    • danD

      If we're hitting the .well-known endpoint, is there any way to select which tenant we're obtaining the manifest for?

      Q&A
      • oauth tenant faq • • dan
      2
      0
      Votes
      2
      Posts
      1.7k
      Views

      danD

      Yes, you can provide the tenantId on the request as a parameter. More information here: https://fusionauth.io/docs/v1/tech/oauth/endpoints#openid-configuration

    • danD

      Is there a way to have a user who logs out of an application go back to wherever they started from at login?

      Q&A
      • login logout faq • • dan
      2
      0
      Votes
      2
      Posts
      4.7k
      Views

      danD

      You can use the post_logout_redirect_uri query parameter on the logout endpoint to configure where a user ends up after logout.

      More here: https://fusionauth.io/docs/v1/tech/oauth/endpoints

    • danD

      Solved How can I get a new refresh token from FusionAuth?

      Q&A
      • faq refresh token jwt login • • dan
      5
      0
      Votes
      5
      Posts
      11.2k
      Views

      danD

      @bboure You may be interested in this new feature from the 1.17.0 release, which allows for a sliding window of refresh tokens:

      Sliding Window Refresh Token Expiration. By default the expiration of a refresh token is calculated from the time it was originally issued. Beginning in this release you may optionally configure the refresh token expiration to be based upon a sliding window. A sliding window expiration means that the expiration is calculated from the last time the refresh token was used. This expiration policy means that if you are using refresh tokens to maintain a user session, the session can be maintained as long as the user remains active. This expiration policy must be enabled at the tenant level, and may optionally be overridden by the Application JWT configuration.

    • danD

      Solved Can you move users from one tenant to another?

      Q&A
      • user import tenant faq • • dan
      7
      0
      Votes
      7
      Posts
      27.0k
      Views

      danD

      Another option that works as of today is to set up a tenant to tenant connector.

      Add a connector to the new tenant. Point it at the /api/login endpoint of the old tenant, including an API key as a header.

      Change your app to send everyone to a new application in the new tenant.

      When the user logs in to the new application, if it is the first time they've been seen, the old tenant data, including password, will be queried. The password hash will be transparently migrated to the new tenant.

      This slow migration takes time, but is another option.

    • danD

      Does FusionAuth support high availability database configurations?

      Q&A
      • database availability faq • • dan
      7
      0
      Votes
      7
      Posts
      6.8k
      Views

      K

      @dan 160ms

    • danD

      Can we use all the features with the self hosted version?

      Q&A
      • faq pricing features self hosted • • dan
      2
      0
      Votes
      2
      Posts
      4.6k
      Views

      danD

      You always get the same features whatever level you are at no matter where you host. That is to say, if you have a premium plan, you can host or we can, the features are the same. If you use the community edition, the features are the same no matter where you host.

      However, there are feature differences between the premium and community plans. More here: https://fusionauth.io/pricing

    • danD

      Do you offer premium or enterprise support for self hosted instances?

      Q&A
      • self hosted support faq • • dan
      4
      0
      Votes
      4
      Posts
      8.4k
      Views

      danD

      @aminjabari242 That is correct. Thanks for posting.