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

      username search against the database?

      username registrations • • dan
      2
      0
      Votes
      2
      Posts
      881
      Views

      danD

      The user and registration may have a username field. The username field on the user is the one that can be used to login. In general you will want to use the Search API for those types of queries rather than directly accessing the database.

      The reason is because the API is documented and stable, and the database is undocumented and may change.

    • L

      Slow Elasticsearch queries

      • • luke.fishman
      2
      0
      Votes
      2
      Posts
      418
      Views

      joshuaJ

      Hi @luke-fishman,

      I have a few questions for you to see if we can get to the bottom of this.

      Is this an ongoing problem or has it recently surfaced? If recently surfaced, has anything changed which would slow your queries down? For instance, have you made any architecture changes? Was this user query much faster in the recent past?

      What do queries from the Admin UI look like (are they performant?)?

      Other things to evaluate include the size of your database and your architecture to make sure it's right-sized for your use case.

      Finally, are you seeing anything in the error and event logs in FusionAuth (or in your server) that would indicate a larger problem?

      Thanks,
      Josh

    • danD

      Default tenant id in client library

      client-library default tenant • • dan
      2
      0
      Votes
      2
      Posts
      1.2k
      Views

      danD

      You will need to obtain the default tenantId from the UI.

      If you are using kickstart, you have the option to set the default tenantId so that it is predictable.

    • A

      Unsupported Java Version

      • • anuradha
      2
      0
      Votes
      2
      Posts
      256
      Views

      danD

      Thanks for filing a github issue as well!

      https://github.com/FusionAuth/fusionauth-issues/issues/1227

    • T

      Lambda reconcile does not remove role from registration

      azure lambda oidc reconcile registration • • tl+fa
      12
      0
      Votes
      12
      Posts
      5.2k
      Views

      joshuaJ

      Hi @tl-fa,

      You can view our Roadmap Guidance regarding how features are implemented into FusionAuth. A good snapshot of current development can be found here as well.

      We will certainly update any related issue cards as development moves forward!

      Thanks!
      Josh

    • M

      Multiple authentication possibilities

      • • maarten
      3
      0
      Votes
      3
      Posts
      676
      Views

      joshuaJ

      @maarten,

      Glad that you got this working! If you have any other tips about how you got it working, that might help other users in a similar situation.

      Glad it worked out!

      Thanks,
      Josh

    • danD

      What password rule options does FusionAuth have?

      password password rules • • dan
      2
      0
      Votes
      2
      Posts
      846
      Views

      danD

      A duplicate of https://fusionauth.io/community/forum/topic/438/password-complexity-rules

      But the easiest way to see this is in the tenant API, since that is where they are configured.

      At time of writing, here are the options.

      Screen Shot 2021-05-12 at 1.50.12 PM.png

    • D

      Application Specific Login Theme

      • • developer
      6
      0
      Votes
      6
      Posts
      772
      Views

      danD

      Awesome, glad to help.

      Just to be transparent, application theming requires a paid edition license. You can buy one here: https://fusionauth.io/pricing/editions/

    • danD

      FusionAuth + datadog

      datadog monitoring • • dan
      2
      0
      Votes
      2
      Posts
      1.3k
      Views

      danD

      Here was some feedback from other users:

      I have a k8s cron job that queries the FA eventLog API and sends them as DataDog events, then depending on severity a DataDog Event monitor will fire. Other than that, I feel rather blind.

      we havent been able to upgrade quite yet, but 1.26 added a prometheus endpoint
      right now we use the datadog jmx integration to get some stats, and we also do things like http monitoring

      Here's the prometheus endpoint docs: https://fusionauth.io/docs/v1/tech/tutorials/prometheus/

    • D

      Magic Link failing for org using Mimecast and AD

      • • davidmw
      5
      0
      Votes
      5
      Posts
      1.7k
      Views

      robotdanR

      It looks as though Trend Micro (or whatever security solution is being used as a pass through) is modifying the URL and not properly preserving the URL encoding. You will need to inquire with Trend Micro about why this would be occurring.

    • S

      SAMLv2 Error (v1.26.1)

      • • stuart.auld
      4
      0
      Votes
      4
      Posts
      956
      Views

      robotdanR

      Interesting, not sure how this would happen. Thanks for the report @stuart-auld - I agree, this is not a good dev experience. We will identify this cause and try to failure better.

      Tracking via GitHub Issue #1217

    • danD

      Solved How can I implement a client credentials grant with FusionAuth?

      grant client creds • • dan
      3
      0
      Votes
      3
      Posts
      2.9k
      Views

      danD

      An update! The client credentials grant is now available in paid editions of FusionAuth.

      Here is the documentation:

      https://fusionauth.io/docs/v1/tech/oauth/#configure-entities

      https://fusionauth.io/docs/v1/tech/oauth/#example-client-credentials-grant

    • F

      This topic is deleted!

      • • fred.fred
      1
      0
      Votes
      1
      Posts
      6
      Views

      No one has replied

    • D

      Using FusionAuth In React Native

      • • developer
      2
      0
      Votes
      2
      Posts
      505
      Views

      danD

      Did you ever find a solution @developer ?

      For the first issue, did you turn off client authentication in the FusionAuth application OAuth tab?

    • danD

      Too many connections error with mysql

      mysql database connections error • • dan
      3
      0
      Votes
      3
      Posts
      8.5k
      Views

      danD

      And now it works fine with 152 threads connected, so unable to reproduce this.

      I'll keep an eye out for this behavior and file an issue if it pops up again.

      For the record:

      FusionAuth 1.27
      installed via zip file
      Mysql 8.0.23 installed/managed via homebrew on the mac.

    • D

      Entity - create/update/delete API?

      api • • dhait
      2
      0
      Votes
      2
      Posts
      2.6k
      Views

      danD

      We were working on getting it documented and it shipped yesterday. Sorry for the delay!

      https://fusionauth.io/docs/v1/tech/apis/entity-management/ outlines all the relevant APIs, including entity CRUD.

      You might also be interested in the client credentials grant, one of the main use cases:

      configuring entities for the client credentials grant: https://fusionauth.io/docs/v1/tech/oauth/#configure-entities an example client credentials grant: https://fusionauth.io/docs/v1/tech/oauth/#example-client-credentials-grant
    • M

      metaData supplied to /api/login

      • • Moonshine
      4
      0
      Votes
      4
      Posts
      2.2k
      Views

      joshuaJ

      @Moonshine,

      Glad you found it in our UI!

      Thanks,
      Josh

    • danD

      Shutting down FusionAuth cloud deployments

      cloud deployment • • dan
      2
      0
      Votes
      2
      Posts
      1.1k
      Views

      danD

      No, it is more like terminating an EC2 instance. All data is lost.

      If you have user data you'd like to retain, please request a database dump before destroying your deployment.

    • P

      This topic is deleted!

      • • payalnovelvista
      1
      0
      Votes
      1
      Posts
      6
      Views

      No one has replied

    • P

      Not able to Login with Apple ID

      • • progressman
      6
      0
      Votes
      6
      Posts
      3.4k
      Views

      T

      Posting here in addition to GitHub: The issue for me was that the signing key didn't have the right Apple-provided key identifier, which goes in the kid field of the client_secret JWT header. Recreating the private key with that identifier fixed the issue.