Navigation

    FusionAuth
    • Login
    • Search
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    1. Home
    2. Categories
    3. Q&A
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • Most Views
    • dan

      What open source and commercial packages are known to work with FusionAuth?
      commercial compatibility open source packages • • dan

      6
      0
      Votes
      6
      Posts
      5643
      Views

      robotdan

      All of the new IdPs added in 1.28.0. Twitch, Steam, Xbox, Sony PSN, and Epic Games.

    • robotdan

      SOLVED Why is FusionAuth so awesome?
      • robotdan

      2
      1
      Votes
      2
      Posts
      139
      Views

      robotdan

      Because... reasons.

    • dan

      What level of performance can we expect with using FusionAuth as an IdP?
      performance from-slack faq • • dan

      2
      0
      Votes
      2
      Posts
      144
      Views

      dan

      We have load tested our medium deployments to roughly 20 logins per second. It can vary quite a bit. We ship with PBKDF2 and a factor of 24,000. That configuration is the primary limiter to how many passwords we hash per second.

      Tune it up to bcrypt factor 14, and it may take 3-5 second per hash. You can also tune the factor down from the default scheme to increase logins per second - it is a trade-off between security and performance.

      And you can change these settings at the tenant or user levels: https://fusionauth.io/docs/v1/tech/apis/tenants
      https://fusionauth.io/docs/v1/tech/apis/users

    • dan

      Does a managed account on fusionauth.io support a custom domain?
      domains managed-account from-slack faq • • dan

      2
      0
      Votes
      2
      Posts
      236
      Views

      dan

      It depends, if you’re on an Enterprise hosting plan we can configure a certificate with your domain. So if your app is running at acme.com - we can add a certificate so that you can create a DNS CNAME record to our service using login.acme.com (for example) .

      More on our plans here: https://fusionauth.io/pricing

    • dan

      Unable to create a registration using the .NET core client
      dotnet client-library user-api • • dan

      4
      1
      Votes
      4
      Posts
      269
      Views

      dan

      @robotdan Ah, I missed that. I was looking at the response section, which had the registration. Thanks!

    • dan

      Can I use hosted FusionAuth with a 'sensitive' google scope?
      from-slack google oauth faq • • dan

      2
      1
      Votes
      2
      Posts
      57
      Views

      dan

      If you have purchased a high availability hosting plan we can configure additional URLs for you - such as login.example.com - and then FusionAuth would be in the same domain as your own application, and you'd be able to verify the domain.

    • dan

      Is there a way to customize the Two Factor Code message that comes when the twilio integration is enabled?
      twilio sms configuration from-slack faq • • dan

      2
      0
      Votes
      2
      Posts
      57
      Views

      dan

      This is not currently available.

      The plan is to build out SMS templates that can localized and customized but no timelines have been determined.

    • dan

      Seeing userState of AuthenticatedNotRegistered
      from-slack oauth user faq • • dan

      2
      0
      Votes
      2
      Posts
      156
      Views

      dan

      That message means the user is not registered for the application you’re logging into. If you create a registration for the user you’ll see Authenticated.

      More on this here: https://fusionauth.io/community/forum/topic/5/can-you-limit-a-user-s-login-authentication-access-to-applications-within-a-single-tenant/2

    • dan

      Cannot login with login API?
      • dan

      2
      0
      Votes
      2
      Posts
      85
      Views

      dan

      If you are using the Login API (/api/login) - this does not create an SSO session.

      The FusionAuth Login pages do not currently use the access_token or refresh_token cookies for session management.

      If you want the SSO feature - you need to use the FusionAuth login pages. This is the strategy outlined in the 5 minute setup guide: https://fusionauth.io/docs/v1/tech/5-minute-setup-guide

      We do have a feature open to switch to token based SSO so that this use case would work: https://github.com/FusionAuth/fusionauth-issues/issues/358

    • M

      What happens after asymmetric key expiration?
      • mgetka

      7
      1
      Votes
      7
      Posts
      192
      Views

      dan

      Well, since we're talking about behavior based on a fix that isn't written yet, things are a bit theoretical. 🙂

      Here's one approach we'd consider. An expired key pair cannot be used to sign a JWT, so we would either have to generate a new key pair ahead of the expiration, or start failing login operations. The former is a better user experience, so a user will either have to regenerate the key, or we would do it based upon a configured policy.

      Also, wanted to be clear that we are aware of this limitation, which is why we set the default expiration period to 10 years (so we have a bit of time to solve this in the best way possible).

      Hope this helps. Let me know if you don't have the information you need.

    • dan

      How can I make sure FusionAuth is running when I start it via docker-compose?
      docker docker-compose troubleshooting • • dan

      2
      0
      Votes
      2
      Posts
      71
      Views

      dan

      A good way to test the app is up and running is to run docker logs 27e4c9edd311 where 27e4c9edd311 is the docker container id, which is found by running docker ps|grep fusionauth.

      If you are using docker-compose, you can also run docker-compose logs -f fusionauth.

      Look in the logs for any errors. On successful startup, you'll see this message (with perhaps a different version message):

      --------------------------------------------------------------------------------------------------------- ------------------------------- Starting FusionAuth version [1.16.0-RC.1] ------------------------------- ---------------------------------------------------------------------------------------------------------
    • dan

      Is it possible to set up DB replication using MySQL for FusionAuth db?
      mysql database faq • • dan

      2
      0
      Votes
      2
      Posts
      68
      Views

      dan

      As long as your meet our minimum database requirements in theory it should work. I do know that MySQL Group Replication is not supported.

    • dan

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

      2
      0
      Votes
      2
      Posts
      119
      Views

      dan

      Yes. You can view our plans here: https://fusionauth.io/pricing

      Each plan has the same level of support whether you are hosting with FusionAuth or in your own cloud or data center.

    • dan

      Can we use all the features with the self hosted version?
      faq pricing features self hosted • • dan

      2
      0
      Votes
      2
      Posts
      85
      Views

      dan

      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

    • dan

      Does FusionAuth support high availability database configurations?
      database availability faq • • dan

      2
      0
      Votes
      2
      Posts
      178
      Views

      dan

      Yes. We don't have any specific guidance around using MySQL and PostgreSQL in an high availability configuration. However, it should work. This document discusses the various possible architectures at a high level: https://fusionauth.io/docs/v1/tech/installation-guide/server-layout

      It is worth noting that MySQL group replication will not work. It requires a primary key on each table. We do not meet this requirement and have no plans to adjust the schema for this style of replication to work. Other types of replication that do not require a PK on every table should work.

      The particulars of DB clustering are outside of the scope of what we can assist with, however.

    • dan

      Why isn't FusionAuth open source?
      open source license faq • • dan

      6
      0
      Votes
      6
      Posts
      3919
      Views

      dan

      Hiya,

      I got an answer for you about sunset provisions.

      We have discussed source code escrow options with clients in the past. We can also offer a source code release clause (in the event FusionAuth goes out of business). However, these are only options if you are on an Enterprise plan with a custom contract.

      Hope that helps you make the right decision for your application(s).

    • dan

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

      2
      0
      Votes
      2
      Posts
      96
      Views

      dan

      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

    • dan

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

      2
      0
      Votes
      2
      Posts
      125
      Views

      dan

      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

    • dan

      Is there an api to force a reindex of the users?
      user search reindex • • dan

      2
      0
      Votes
      2
      Posts
      83
      Views

      dan

      No, but you can flush the index: https://fusionauth.io/docs/v1/tech/apis/users#flush-the-search-engine . From that doc:

      This will cause any cached data to be written to disk.

    • K

      Exception: ReferenceError: FormData is not defined calling exchangeOAuthCodeForAccessToken of TypeScript library
      • ken.ono

      2
      0
      Votes
      2
      Posts
      102
      Views

      robotdan

      Hi,

      I think this was recently resolved via this issue https://github.com/FusionAuth/fusionauth-typescript-client/issues/16

      Can you take a look and see if that looks like your symptom?