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

Topics created by ashok

  • A

    Adding support for 3rd party clients authentication

    General Discussion
    • • 7 Jun 2021, 14:54 • ashok 14 Jun 2021, 16:48
    2
    0
    Votes
    2
    Posts
    1.6k
    Views

    J 14 Jun 2021, 16:48

    @ashok

    I think that your initial assessments are correct. You should be able to create an application, and that would generate a unique client secret.

    The API below would be where I would start.
    https://fusionauth.io/docs/v1/tech/apis/applications/#create-an-application

    If you have a few more questions related to the specific technical challenges you see from this approach, we could consider them here as well 🙂

    Thanks,
    Josh

  • A

    Registering a user to other applications during registration

    Q&A
    • • 20 Jul 2020, 16:25 • ashok 21 Sept 2020, 23:19
    11
    0
    Votes
    11
    Posts
    7.7k
    Views

    D 21 Sept 2020, 23:19

    Well, I'd just call the 'create registration' API from the server three times after a user had successfully registered on your custom page: https://fusionauth.io/docs/v1/tech/apis/registrations#create-a-user-registration-for-an-existing-user

    Does that make sense, or do I misunderstand your question?

  • A

    Taking a user directly to the registration page

    Q&A
    • • 16 Jun 2020, 15:30 • ashok 18 Jun 2020, 14:29
    9
    1
    Votes
    9
    Posts
    9.8k
    Views

    D 18 Jun 2020, 14:29

    Great. It's typically used for CSRF protection, but can be used for other purposes. Here's a pretty good article covering this.

  • A

    Multiple Admins

    Q&A
    • admin ui user user management • 5 Jun 2020, 22:55 • ashok 7 Jun 2020, 21:00
    3
    0
    Votes
    3
    Posts
    7.6k
    Views

    A 7 Jun 2020, 21:00

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

  • A

    User registration provider data

    Q&A
    • registrations provider claims • 28 May 2020, 20:19 • ashok 28 May 2020, 22:49
    4
    0
    Votes
    4
    Posts
    4.2k
    Views

    D 28 May 2020, 22:49

    @ashok glad you solved the problem!

    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.

    I'm not sure what you mean here. Are you not seeing all the tokens in the lambda? Or are you not able to put them all in the custom claim?

    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?

    A token is tied to a registration/application, so someone could login with google to one FusionAuth application and with facebook to another. Unless I'm missing something, I don't believe they are combined.

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

    We welcome your feature requests 🙂 . Please file a github issue: https://github.com/fusionauth/fusionauth-issues/issues

  • A

    Mapping Fusion Auth's user ID with our internal user ID

    Q&A
    • data mapping ids user ids • 28 May 2020, 17:36 • ashok 28 May 2020, 22:35
    3
    0
    Votes
    3
    Posts
    2.1k
    Views

    A 28 May 2020, 22:35

    Thanks for the reply @dan.
    We ended up storing sub ID on our side. We thought that might gives us more flexibility down the road (not sure about this but if it doesn't work then we'll have an extra column in the db; a small price to pay IMHO).

    "Where to map the ID?" was a bit headache for us as we didn't want to miss it or make an extra call by polling ourselves. Since we are using .NET Core, we ended up hooking into OnUserInformationReceived event, one of many from OpenIdConnectEvents. Hopefully, I'm not doing something really stupid.