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

      What are the ways to login to multiple applications ?

      • • IzioDev
      2
      1
      Votes
      2
      Posts
      1.9k
      Views

      danD

      Hiya,

      I think the best path forward would be for you to use the populate JWT lambda.

      In that you can examine the user, their registrations to various FusionAuth applications, and modify the delivered JWT. So you could iterate the registrations and build a JWT claim called supportedApps with a list of your apps. You'd have to keep all the lambdas in sync across every application, but luckily you can do so with the FusionAuth API.

      Then in any APIs your SPA or native apps call, they can look at the supportedApps claim. If the API supports that company, it can respond.

      I'm not sure exactly why you are separating these companies out as FusionAuth applications if one login gets you access to all of them, though. You could map this within one application using roles too, which is a different set of tradeoffs.

    • I

      CentOS 8 systemctl fusionauth-api service

      • • infosec
      2
      0
      Votes
      2
      Posts
      253
      Views

      danD

      @infosec welcome to the FusionAuth community!

      This seems like a bug in our rpms. Can you please file a bug here: https://github.com/fusionauth/fusionauth-issues/issues

      Feel free to reference this forum post.

      Thanks so much!

    • danD

      Can you use the same template for the forgot password and send password emails?

      email templates • • dan
      2
      0
      Votes
      2
      Posts
      1.4k
      Views

      danD

      Since both APIs are technically the same, is there a way to use the email template defined for the Setup Password with the Forgot Password API?

      Yes. Navigate to 'Tenants -> your tenant -> Email' and you can set 'Setup password' and 'Forgot password' to be the same template.

      There may be template variable differences, please consult the documentation and ensure you are checking for existence before you rely on them:

      https://fusionauth.io/docs/v1/tech/email-templates/email-templates/#setup-password

      https://fusionauth.io/docs/v1/tech/email-templates/email-templates/#change-password

    • danD

      Which countries does FusionAuth cloud deploy to?

      cloud country • • dan
      2
      0
      Votes
      2
      Posts
      3.8k
      Views

      danD

      It is an ever changing list, but the easiest way to see it is to go to the FusionAuth pricing calculator and select the region to see what countries are currently supported.

      If you would like us to support a country not currently on that list, please contact us with more details.

    • danD

      Do you support peering for low latency environments with FusionAuth cloud?

      cloud latency • • dan
      2
      0
      Votes
      2
      Posts
      1.3k
      Views

      danD

      Peering is not an option at the moment. If you have a use case for this, please file a GitHub issue with more details about how you'd like to see the feature implemented.

      Another option is to self host and run FusionAuth within your cloud network infrastructure. If you'd like to do that and still have help from the FusionAuth team, consider a plan with a support contract.

    • danD

      Deploying to Saudi Arabia?

      cloud • • dan
      2
      0
      Votes
      2
      Posts
      643
      Views

      danD

      We support deploying to Bahrain. Not sure if you are looking for best latency, but that deployment would be the closest geographically.

    • danD

      Auth specific scaling challenges

      • • dan
      1
      0
      Votes
      1
      Posts
      208
      Views

      No one has replied

    • M

      AWS Elastic Search Basic Auth

      • • matt 0
      2
      0
      Votes
      2
      Posts
      637
      Views

      danD

      Welcome to the FusionAuth community @matt-0 !

      Hmmm.

      search.servers=https://user:pass@es.fusionauth.io

      works for me. (But I'm running both ES and FA locally.)

      Is https://username:password@awssearchurl.com the real value in your system, or did you swap it out?

      Also, what version of java are you running?

    • danD

      Are the post and get forms of the user search API equivalent?

      database user search java client • • dan
      2
      0
      Votes
      2
      Posts
      2.5k
      Views

      danD

      Yes, they are equivalent. Building this JSON:

      { "search": { "queryString": "fusionauth.io" } }

      and posting it is equivalent to a GET with queryString=fusionauth.io.

    • R

      This topic is deleted!

      • • ryanboyer612
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • danD

      I have a question about licensing. Where should I look

      license • • dan
      2
      0
      Votes
      2
      Posts
      1.2k
      Views

      danD

      We have a license FAQ.

      If course, if your questions aren't answered there, please feel free to send us an email.

    • danD

      Searching for users with the java client

      java client search users • • dan
      2
      0
      Votes
      2
      Posts
      5.4k
      Views

      danD

      Looking at https://github.com/FusionAuth/fusionauth-java-client/blob/master/src/main/java/io/fusionauth/client/FusionAuthClient.java#L3256

      It appears there is no way to search using the Java client that uses a GET, only a POST. However, you can still provide the queryString in the JSON and it will be equivalent to the GET request.

      Building this JSON:

      { "search": { "queryString": "fusionauth.io" } }

      Is equivalent to queryString=fusionauth.io.

      Hope that helps.

    • danD

      Can I find all users by tenant?

      tenant search users • • dan
      2
      0
      Votes
      2
      Posts
      1.6k
      Views

      danD

      Try clicking on the Advanced section on the User Search page and see you find what you're looking for.

      Or search like this tenantId:9d92ca33-bc7b-4d13-acd7-f7dc06038396 where 9d92ca33-bc7b-4d13-acd7-f7dc06038396 is your tenantId.

      Please note that this is an example for the elastic search search engine. With the database search engine, you can only search for the fields as documented in the API. As of this post, those are:

      firstName lastName fullName email username
    • danD

      Switching databases from mysql to postgresql

      mysql postgres migration • • dan
      2
      0
      Votes
      2
      Posts
      2.6k
      Views

      danD

      There is no easy way to do this. You'd have to migrate your configuration, your users and your DNS (if you are standing up a separate system).

      If you have all your configuration as scripts, that should be easy to migrate, otherwise you need to move things over manually.

      You could probably script a retrieve and then add of all the configuration, but there is no 'export all configuration' option.

      For your users, you could do a database dump to get the hashes and do a bulk import. Or if you have developer edition you could set up a slow migration using connectors. The user migration process is broadly documented here: https://fusionauth.io/docs/v1/tech/guides/migration/

      DNS migration is like any other DNS migration.

    • H

      Is it possible to set the UI time display to European standard (dd/mm/yyyy)?

      user-interface configuration dates • • hd_steve
      3
      0
      Votes
      3
      Posts
      3.5k
      Views

      danD

      Hiya @hd_steve !

      You can change the user's locale and the date format should change in the FusionAuth administrative user interface. More details here: https://fusionauth.io/community/forum/topic/718/how-do-i-change-the-localisation-timezone-for-the-fusionauth-ui?_=1614788141466

      Let me know if that answers your question, please.

      Thanks,
      Dan

    • S

      Email user on failed authentication

      • • stuart.auld
      2
      0
      Votes
      2
      Posts
      357
      Views

      danD

      hi @stuart-auld

      Can you please share more of your configuration? How is the user action configured?

      This may be a documentation issue or a bug, but I'd love to learn more.

      Thanks,
      Dan

    • danD

      This topic is deleted!

      • • dan
      2
      0
      Votes
      2
      Posts
      9
      Views
    • danD

      Dynamic Client Registration support

      standards dynamic client registration • • dan
      3
      0
      Votes
      3
      Posts
      1.7k
      Views

      danD

      Please see this issue for updates on this functionality. Vote for it if this is important to you.

    • danD

      What does 'reconcile' mean?

      reconcile • • dan
      2
      0
      Votes
      2
      Posts
      733
      Views

      danD

      Reconcile is a way of make sure that a user account exists and has the correct data. The remote system is treated as the system of record, but we want a record in our local system as well.

      It is a two phase process:

      If the user doesn’t exist in FusionAuth (i.e. the OAuth server), they are created The data from Facebook (or any third party system) is merged with the data in FusionAuth and the user is updated

      Step 1 is optional and configurable in FusionAuth. We call it Create Registration in the application configuration. If the user already exists, then step 1 is skipped.

    • S

      Custom webhook body?

      • • stuart.auld
      2
      1
      Votes
      2
      Posts
      392
      Views

      danD

      @stuart-auld welcome to the FusionAuth community!

      There is no within FusionAuth to modify a webhook body.

      This may be a feature of interest to the community; I'd encourage you to file a feature request with more details, but we could possibly run a lambda run every time a webhook runs to transform the webhook output. (There's probably scope for adding lambdas in lots of places; here's another one.)

      Until that happens, however, you can send the webhook to a process running on a server or using something like google cloud functions or AWS lambda to transform the webhook output.