• Home
  • Categories
  • Recent
  • Popular
  • Pricing
  • Contact us
  • Docs
  • Login
FusionAuth
  • Home
  • Categories
  • Recent
  • Popular
  • Pricing
  • Contact us
  • Docs
  • Login
  1. Home
  2. ashok
A
  • Profile
  • Following 0
  • Followers 1
  • Topics 7
  • Posts 14
  • Best 4
  • Controversial 0
  • Groups 0

ashok

@ashok

4
Reputation
7
Profile views
14
Posts
1
Followers
0
Following
Joined 28 May 2020, 17:28 Last Online 7 Jun 2021, 15:00

ashok Unfollow Follow

Best posts made by ashok

  • Taking a user directly to the registration page

    What's a good way to generate a URL that would take a user directly to the registration page (bypassing the login page) and with a redirect URL? It's an ASP .NET Core app. Do I need to use an API or is there a more "direct" way?

    I feel like this has been asked and answered before but my search fu failed me.

    posted in Q&A
    A
    ashok
    16 Jun 2020, 15:30
  • RE: Multiple Admins

    I totally forgot to add the register the user manually to the FusionAuth application. It is working now, thank you!

    posted in Q&A
    A
    ashok
    7 Jun 2020, 21:00
  • RE: How do I handle users without passwords during import

    Ahh! So leave out encryptionScheme, factor, and salt and set password to a 32 bytes random password. Makes sense. Thank you!

    posted in Q&A
    A
    ashok
    19 Jun 2020, 23:25
  • RE: Registering a user to other applications during registration

    That makes sense. Thanks @dan!

    posted in Q&A
    A
    ashok
    20 Jul 2020, 20:58

Latest posts made by ashok

  • Adding support for 3rd party clients authentication

    Our app exposes some APIs that can be consumed by our clients, where each client has multiple users (who are, of course, authenticated using FusionAuth). We want to be able to provide a way for them to have register their apps and have their own client ID/secret so that they can make some api calls (we understand that we might have to create some UI to support this). Think of how we can register our apps with GitHub.

    Is there a way to support this use case in FusionAuth? The only way I could think of even getting started is by making an api call to add new Application but my head started spinning thinking of the next steps? Any suggestions on how to get started? Or opinion on if this is even supported?

    Thank you!

    posted in General Discussion
    A
    ashok
    7 Jun 2021, 14:54
  • RE: Registering a user to other applications during registration

    That makes sense. Thanks @dan!

    posted in Q&A
    A
    ashok
    20 Jul 2020, 20:58
  • Registering a user to other applications during registration

    Is there an "automatic" way to register a user to a different application, say, a mobile app, when they register for, say, a web app? Or do we have to do that at the application level using an API?

    posted in Q&A
    A
    ashok
    20 Jul 2020, 16:25
  • RE: How do I handle users without passwords during import

    Ahh! So leave out encryptionScheme, factor, and salt and set password to a 32 bytes random password. Makes sense. Thank you!

    posted in Q&A
    A
    ashok
    19 Jun 2020, 23:25
  • RE: How do I handle users without passwords during import

    Out of curiosity, "then FusionAuth will hash the password inline before it stores the value". What determines a non-hashed password? The absence of salt?

    posted in Q&A
    A
    ashok
    19 Jun 2020, 23:03
  • RE: Taking a user directly to the registration page

    @dan It does! We are trying it out today to see if it works or not. I'll report back. Thank you so much for jumping on it and coming up with a solution.

    posted in Q&A
    A
    ashok
    17 Jun 2020, 20:49
  • Taking a user directly to the registration page

    What's a good way to generate a URL that would take a user directly to the registration page (bypassing the login page) and with a redirect URL? It's an ASP .NET Core app. Do I need to use an API or is there a more "direct" way?

    I feel like this has been asked and answered before but my search fu failed me.

    posted in Q&A
    A
    ashok
    16 Jun 2020, 15:30
  • RE: Multiple Admins

    I totally forgot to add the register the user manually to the FusionAuth application. It is working now, thank you!

    posted in Q&A
    A
    ashok
    7 Jun 2020, 21:00
  • Multiple Admins

    Is it possible to have multiple admins on a single FusionAuth instance? I created an "admin" group with all the permissions selected and then added a new user to this group. When I tried to login using this new user, I get this message

    Your account does not have permissions to access the FusionAuth Admin Interface. Please contact your system administrator.
    
    posted in Q&A admin ui user user management
    A
    ashok
    5 Jun 2020, 22:55
  • RE: User registration provider data

    That's exactly what I ended up using (by adding it as a custom claim in a lambda function)

    function populate(jwt, user, registration) {
      jwt.provider = Object.keys(registration.tokens)[0];
    }
    

    . The only problem is that I don't seem to be able to pass all the tokens and then "map" it out in the backend. Also, I think I already know the answer to this and this may sound dumb, but how can you have multiple tokens? A user with multiple providers? If so, how are they consolidated and combined?

    Lastly, it would have been nice if user.registrations had a providers field.

    posted in Q&A
    A
    ashok
    28 May 2020, 22:41