FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. Alex Patterson
    3. Best
    A
    • Profile
    • Following 0
    • Followers 0
    • Topics 19
    • Posts 81
    • Best 7
    • Controversial 0
    • Groups 1

    Best posts made by Alex Patterson

    • RE: Planing to use FusionAuth entity based RBAC, but it is not clear could it cover full CRUD.

      Roles are associated with applications and users, whereas grants are associated with users and entities.

      To find all users with role X or grant Y, you'd need to make two different search calls like this:

      By Entity

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

      By User

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

      You don't need to maintain a separate database.

      Here's an example of a grant search for a user: https://fusionauth.io/docs/apis/entities/grants#search-for-grants

      If you search for the string Example JSON in the page you will also see the link to Entity APIs

      posted in Q&A
      A
      Alex Patterson
    • Account Lockout custom message

      I am setting up account lockout and I would like to setup a custom message. Is it possible to customize the Account Lockout Message? If so, how?

      posted in Q&A
      A
      Alex Patterson
    • RE: Does a managed account on fusionauth.io support a custom domain?

      As of July 25, 2023 we now support Unlimited Custom Domains for FusionAuth Cloud! You can read more in this post, on how to add a custom domain.

      posted in Q&A
      A
      Alex Patterson
    • RE: We’re using FusionAuth Cloud, how can we enable a custom domain?

      As of July 25, 2023 we now support Unlimited Custom Domains for FusionAuth Cloud! You can read more in this post, on how to add a custom domain.

      posted in Q&A
      A
      Alex Patterson
    • RE: Multiple application with different programming language

      @alexiussamson83 With a single FusionAuth Application you can use this with multiple SDK's or API's.

      https://fusionauth.io/docs/v1/tech/client-libraries/

      posted in Q&A
      A
      Alex Patterson
    • RE: Adding supplementary user data

      @evanm I would recommend using a JWT in your API and storing the user id to associate the user to your stripe user account.

      You can find more about this in our tokens docs, here you will want the sub.

      https://fusionauth.io/docs/lifecycle/authenticate-users/oauth/tokens

      On point two it is a classic it depends scenario. This could be handled by logic that you build, or if it makes sense you could use FusionAuth's groups or entities

      posted in Q&A
      A
      Alex Patterson
    • RE: Error in startup after upgrading to 1.51.2

      @ronn316 if you want to use silent mode during the upgrade

      https://fusionauth.io/docs/get-started/download-and-install/silent-mode

      posted in Q&A
      A
      Alex Patterson