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
    • J

      Unsolved startup.sh fails on tar of openjdk linux gz

      • • james.black
      6
      0
      Votes
      6
      Posts
      2.9k
      Views

      robotdanR

      Tracking here: https://github.com/FusionAuth/fusionauth-issues/issues/1519

    • J

      Unsolved Provide from_address with send_email API

      • • johnmiller
      4
      0
      Votes
      4
      Posts
      2.6k
      Views

      joshuaJ

      @johnmiller --

      That sounds good!

      Feel free to log an issue if you would like to see this supported in the future.

      https://github.com/FusionAuth/fusionauth-issues/issues/new/choose

      Thanks,
      Josh
      FusionAuth

    • M

      Unsolved Error message from webhook on login page

      • • mihailacusteanu
      4
      0
      Votes
      4
      Posts
      426
      Views

      M

      @joshua Thanks for answering
      So this is not yet possible and all I can do is thumbs up the issue and wait.

    • G

      Unsolved Client Id MisMatch issue Password Grant

      • • guru
      2
      0
      Votes
      2
      Posts
      281
      Views

      No one has replied

    • I

      Unsolved This topic is deleted!

      • • isoc0812
      1
      0
      Votes
      1
      Posts
      3
      Views

      No one has replied

    • C

      Unsolved How do I search for all entities a user has been granted permission on?

      • • cgoddard
      2
      0
      Votes
      2
      Posts
      964
      Views

      danD

      @cgoddard I think this was missing documentation that has now been added: https://fusionauth.io/docs/v1/tech/apis/entity-management/grants/#search-for-grants

      Let me know if that doesn't address your question.

    • C

      Unsolved Retrieve search index in FusionAuth Cloud

      • • cgoddard
      2
      0
      Votes
      2
      Posts
      460
      Views

      danD

      @cgoddard I think this topic addresses your question: https://fusionauth.io/community/forum/topic/1389/see-user-and-entity-elasticsearch-indexes-when-running-in-fusionauth-cloud

    • L

      Unsolved Prevent user from accessing FusionAuth login page after using /api/login

      • • lightalakanzam
      2
      0
      Votes
      2
      Posts
      2.4k
      Views

      danD

      @lightalakanzam Not with standard fusionauth, because the hosted login pages don't know that the login has occurred.

      You could perhaps set a cookie on login with the login API and then look for that cookie in an http proxy in front of FusionAuth, and deny access to the login pages at that time.

      Or, you could, if you are only using the login API, set up the theme to have a blank login page.

    • J

      Unsolved Support for DoD CAC Cards? Yubi Key Certs? etc..

      • • jeremy.c.london
      2
      0
      Votes
      2
      Posts
      1.8k
      Views

      danD

      @jeremy-c-london

      Currently FusionAuth doesn't support these as login methods.

      This would be custom development work which is typically only offered to enterprise customers, but you can reach out to the sales team to start the conversation.

    • M

      Unsolved How to change user avatar image on FusionAuth?

      • • minhngocnguyenduy
      3
      0
      Votes
      3
      Posts
      994
      Views

      M

      @joshua Thanks, Josh.

      My avatar is happy now 🙂

    • B

      Unsolved This topic is deleted!

      • • beatricejessie173
      1
      0
      Votes
      1
      Posts
      3
      Views

      No one has replied

    • A

      Unsolved "Invite" users to tenant via email without password

      • • alan.wood
      2
      0
      Votes
      2
      Posts
      605
      Views

      danD

      and/or detect that the user was an IdP managed user?

      In the reconcile lambda from the IdP (here's the docs for the OIDC lambda), you can set whatever data you want on the user.data field, so you could set user.data.idpUser = true. Then you can access that value from the self edit page freemarker template and decide to show or hide the password field.

      I get that this isn't as straightforward as it would be if the original feature request was implemented 🙂 . But I think there's a path forward here that doesn't wait on that.

    • danD

      Unsolved See user and entity elasticsearch indexes when running in FusionAuth cloud

      cloud elasticsearch index • • dan
      2
      0
      Votes
      2
      Posts
      1.6k
      Views

      danD

      Elasticsearch access is not available for FusionAuth cloud deployments.

      I would recommend running FusionAuth locally, which should display similar results as your cloud deployment for how the user and the entities are mapped.

    • danD

      Unsolved How can I activate or deactivate a user?

      active inactive • • dan
      2
      0
      Votes
      2
      Posts
      1.1k
      Views

      danD

      Users can be deactivated and reactivated using the User API. The following FusionAuth documentation outlines deactivation (or soft-delete) and reactivation:

      Delete A User (soft-delete them, don't hard delete them)

      Reactivate a User

      HTH

    • danD

      Can I get permissions granted to a user against an Entity in an OAuth grant

      entities authorization code grant • • dan
      3
      0
      Votes
      3
      Posts
      4.7k
      Views

      danD

      The ability to search grants for a user was a gap in our documentation. We have since released an update to showcase/describe the use case.

      https://fusionauth.io/docs/v1/tech/apis/entity-management/grants/#search-for-grants

      Your API endpoint call will look like below:

      GET /api/entity/grant/search?userId={uuid}

      Additional possible filtering functionality is documented in this feature request.

    • F

      Unsolved Custom theme deployment between environments

      theme deployment application api docs • • fred.fred
      2
      0
      Votes
      2
      Posts
      6.7k
      Views

      danD

      @fred-fred said in Custom theme deployment between environments:

      It looks like we can transport with the API using Theme Update Endpoints and sharing environment API keys so one environment can see the next environment to copy the themes over.

      Yes, that's what I'd recommend. You could have different API keys for each environment and have the script that promotes the theme pull the API key from a secrets store. Make sure you limit the API key to the themes endpoint.

      You also might be interested in this post: https://fusionauth.io/community/forum/topic/1306/parameterizing-themes which indicates how you can have the same theme files point to different resources in staging/prod/dev/etc.

    • O

      Unsolved Password policy per user

      • • omryc3
      2
      0
      Votes
      2
      Posts
      1.7k
      Views

      danD

      @omryc3 Have you tested the authentication tokens and seeing if the password policy applies to them? I'm not sure myself, but it should be an easy test to run.

      It is not possible to have different password rules apply to users in the same tenant, since they are tenant level policies and apply to every user within a tenant.

      You could have the users that you want to have no password expiration use OIDC to login against a third party server. (And that server could be a different FusionAuth instance.)

    • M

      Unsolved Which regular expression is used to verify the users phone number?

      • • markus.wild
      2
      1
      Votes
      2
      Posts
      2.5k
      Views

      danD

      @markus-wild

      Hmmm. A few more details would be helpful. Are you using the basic self service registration form? And the mobilePhoneNumber field? Or is it some other field that you are using?

      What is the exception you are seeing? Where does it show up? What does the end user see?

      Also, what version of FusionAuth are you using?

      Thanks!

    • P

      Unsolved Fusion Auth w/ Vitess DB

      • • psmiddy
      3
      0
      Votes
      3
      Posts
      3.7k
      Views

      P

      @maciej-wisniowski Thanks for your help. I was able to connect but had some trouble from then on. I will create an issue on github and see if official support can be added.

      Is there a recommended way of running fusion auth on a clustered database?

    • danD

      How do you assign a theme to an application?

      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.