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
      • • • ashok
      2
      0
      Votes
      2
      Posts
      1.5k
      Views

      joshuaJ

      @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
      • • • ashok
      11
      0
      Votes
      11
      Posts
      6.9k
      Views

      danD

      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
      • • • ashok
      9
      1
      Votes
      9
      Posts
      9.1k
      Views

      danD

      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 • • ashok
      3
      0
      Votes
      3
      Posts
      7.4k
      Views

      A

      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 • • ashok
      4
      0
      Votes
      4
      Posts
      3.8k
      Views

      danD

      @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 • • ashok
      3
      0
      Votes
      3
      Posts
      1.8k
      Views

      A

      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.