FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. Categories
    3. Q&A
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • danD

      Can I query a user on their user data?

      user user-data search query faq • • dan
      4
      0
      Votes
      4
      Posts
      8.4k
      Views

      danD

      @le-nnyburkdoll

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

      Thanks,
      Dan

    • B

      Unsolved Cannot consisently set FA username via PATCH in a Webhook

      • • bryan
      2
      1
      Votes
      2
      Posts
      296
      Views

      danD

      @bryan

      Thanks for using FusionAuth!

      I think this GitHub issue might be related to what you see: https://github.com/FusionAuth/fusionauth-issues/issues/2233

      Please take a look and let us know.

      Dan

    • I

      Unsolved Django with Sveltekit authentication

      • • ismail
      2
      0
      Votes
      2
      Posts
      803
      Views

      danD

      @ismail

      Thanks for using FusionAuth!

      I don't have any experience with SvelteKit, but this new NextJS quickstart might be of interest to you:

      https://fusionauth.io/blog/2023/04/26/nextjs-single-sign-on

      Dan

    • T

      Unsolved SEARCH_TYPE in docker-compose.yml not taking effect?

      • • twilkinson
      3
      1
      Votes
      3
      Posts
      657
      Views

      danD

      @twilkinson

      Thanks for using FusionAuth!

      Did you get this sorted out?

      Dan

    • T

      Unsolved Error on sample flask app login

      • • tilan
      4
      0
      Votes
      4
      Posts
      977
      Views

      danD

      @mattcrox

      Thanks for using FusionAuth!

      1.32.1 is pretty old version (released in Dec 2021). Do you run into the same issue with more recent versions?

    • R

      Unsolved Fusionauth on azure app service for containers

      • • rafal.glebocki
      4
      1
      Votes
      4
      Posts
      2.3k
      Views

      D

      @rafal-glebocki
      I'm working through the same issue. I've setup an Application Gateway but it doesn't appear to be working. Would you share your configuration?

    • V

      Unsolved Configure FustionAuth as an OpenID provider?

      • • vinhdat82
      5
      1
      Votes
      5
      Posts
      615
      Views

      danD

      @vinhdat82

      You can definitely use FusionAuth as an OpenID Connect provider. The callback is https://your.fusionauth.server/oauth2/callback

      We only support front channel logout.

      Can you share more details about the application you are trying to use FusionAuth for? What is the framework, etc?

      That might help me direct you to some better documentation.

    • H

      Solved Can I create new tables in the FusionAuth database?

      • • heitordanilo2003
      2
      1
      Votes
      2
      Posts
      357
      Views

      danD

      @heitordanilo2003

      Welcome to the FusionAuth community!

      It isn't possible to create new tables inside FusionAuth. However, you have a few options within the current supported extension points.

      You can correlate between two different databases, as you currently are. You can use the user.data and user.registration.data fields. These are arbitrary JSON objects and you can define your own schema inside them. They are searchable. You can use Entity Management. Entity Management lets you define your own entities (which also have data fields) and relationships between users and entities. This is paid functionality that requires a license key.

      Hope that helps.
      Dan

    • J

      Unsolved Can we make enabling of 2FA required after login for specific users of application?

      • • jvadaliya
      2
      1
      Votes
      2
      Posts
      588
      Views

      danD

      @jvadaliya FusionAuth enforces MFA for users at the tenant or application level, but not the specific user.

      You can file a feature request here: https://github.com/fusionauth/fusionauth-issues/issues

      You can also make an API call in your application after the user has logged in to force MFA for only certain users; this is called step up auth: https://fusionauth.io/docs/v1/tech/guides/multi-factor-authentication#step-up-auth

      Hope this helps.

    • danD

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

      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.

    • J

      Unsolved SAML v2 IdP Initiated Identity Provider

      • • joey.zhang
      2
      0
      Votes
      2
      Posts
      337
      Views

      danD

      @joey-zhang

      I'm not sure what you mean? Can you please explain further?

    • R

      Unsolved Importing users with + in email address fails?

      • • ryan 2
      2
      1
      Votes
      2
      Posts
      321
      Views

      danD

      @ryan-2 Hmmm.

      I searched our GH issues list: https://github.com/fusionauth/fusionauth-issues/issues and didn't see that as an issue. I also reviewed our import API doc and didn't see it either.

      Can you please share more details, including the version of FusionAuth you were using and repro steps? That would be be helpful in characterizing this issue in more detail.

    • T

      Unsolved SAML IDP - message.State is null or empty

      • • tw
      3
      1
      Votes
      3
      Posts
      1.3k
      Views

      T

      @dan figured out a workaround based of the auth0 documentation.

      I have added a new route in our API gateway as the callback url in fusionauth. This is the RelayState (or redirect_uri with the acs) that we are providing for our IdP providers.

      The route for example is now:

      /signin-saml-oidc?code=j6rOnUBViLU1kR5UA2eKK_UTzc-cO2auei53TJU9X8g&locale=en_US&userState=Authenticated

      Which we just issue a ChallengeAsync which then redirects back to fusionauth and then redirects back to signin-oidc with the code and state parameter.

      await this.HttpContext.ChallengeAsync()

      Obviously this isn't ideal & add's another redirect in the flow, but it works as the user is authenticated in FusionAuth & our gateway is triggered the challenge (so generating the state)

      FusionAuth Version: 1.44.0

    • D

      Unsolved I can't change the redirect URL for OpenID Connect

      • • dobritos11
      3
      0
      Votes
      3
      Posts
      1.6k
      Views

      danD

      @hazelmarissa1 Since you are using cleanspeak, I'd suggest filing a support ticket if you are having issues.

      Log into your Cleanspeak account from here: https://account.cleanspeak.com/ and you should have options to file a ticket.

      This forum is for FusionAuth users, so you probably won't get much help here. 🙂

    • danD

      Solved Are FusionAuth docker images affected by the docker hub changes?

      • • dan
      2
      0
      Votes
      2
      Posts
      2.2k
      Views

      danD

      Nope.

      FusionAuth pays for an organization and the FusionAuth dockerhub images will remain freely available.

    • S

      FusionAuth and API Gateway (Kong)

      • • scorneliu
      3
      0
      Votes
      3
      Posts
      2.0k
      Views

      danD

      We have started to document API gateway integrations with FusionAuth here: https://fusionauth.io/docs/v1/tech/developer-guide/api-gateways/

    • J

      Solved How can I expose the instance on my Ubuntu server?

      • • javi
      2
      0
      Votes
      2
      Posts
      497
      Views

      J

      @javi

      Here is the answer I got on SO: https://stackoverflow.com/questions/75665818/how-can-i-expose-fusionauth-on-ubuntu-apache-to-connect-from-browser/75667048#75667048

      Question closed!

    • danD

      What level of performance can we expect with using FusionAuth as an IdP?

      performance from-slack faq • • dan
      4
      0
      Votes
      4
      Posts
      8.2k
      Views

      danD

      @m-arlynrasavong Hmmm. Can you share more details?

    • P

      Solved Kickstart properties

      • • paterik4
      5
      1
      Votes
      5
      Posts
      3.1k
      Views

      P

      @dan

      Yes, this answers my question, thank you!

    • danD

      Solved Issue with istio and FusionAuth

      istio kubernetes • • dan
      2
      0
      Votes
      2
      Posts
      1.8k
      Views

      danD

      There are a couple of things to check:

      make sure that you've updated the issuer at the tenant screen: https://fusionauth.io/docs/v1/tech/core-concepts/tenants#general make sure you are using an asymmetric keypair to sign the id token. If you are using HMAC, which is the default for FusionAuth, you have to share a secret. Asymmetric algorithms like RSA256 are what proxies typically need (so they don't have to have the signing secret). More here: https://fusionauth.io/docs/v1/tech/core-concepts/applications#jwt and here: https://fusionauth.io/docs/v1/tech/core-concepts/key-master

      Hope that helps.