FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. humaira.tum11
    3. Topics
    H
    • Profile
    • Following 0
    • Followers 0
    • Topics 5
    • Posts 10
    • Best 2
    • Controversial 0
    • Groups 0

    Topics created by humaira.tum11

    • H

      Retrieving Data using FusionAuth API

      Q&A
      • • • humaira.tum11
      15
      1
      Votes
      15
      Posts
      11.4k
      Views

      K

      @dan said in Retrieving Data using FusionAuth API:

      Great! We have a PR out to revisit the search documentation which I just merged. So hopefully that will be clearer for folks in the future.

      Back to this comment of yours, I meant that the first line in this screenshot kinda confused me, since I thought that you're searchQuery will be searched only for these fields and not all of the existing fields if you call this this endpoint http://{{dockerhost}}:{{fusionport}}/api/user/search?queryString=*

      And also I did not know that I can do something like http://{{dockerhost}}:{{fusionport}}/api/user/search?queryString=tenantId:uuid

    • H

      OAuth-Asp.net - Integrating FusionAuth in existing OAuth application

      Q&A
      • • • humaira.tum11
      2
      0
      Votes
      2
      Posts
      3.6k
      Views

      danD

      Hi,

      If you are just using OAuth, I'd follow this tutorial from Microsoft: https://docs.microsoft.com/en-us/aspnet/mvc/overview/older-versions/using-oauth-providers-with-mvc

      You can use OAuth with FusionAuth without using the client libraries at all. It's only when you need to call APIs outside of OAuth that you'll need the API key and the client libraries.

      Let me know if that helps!

    • H

      Basic Questions regarding FusionAuth

      Q&A
      • • • humaira.tum11
      6
      0
      Votes
      6
      Posts
      12.7k
      Views

      danD

      I can see we can create applications and add tenants to them, which can't be edited/changed later. Is it possible to Add multiple tenants to one application? And maybe change the tenant later.

      Nope, applications are contained within tenants. Here's a blog post talking about multi tenant in FusionAuth.

      Also, on the documentation, it can be seen that in order to support multi-tenant or offer services to more than one client.
      In this scenario, it is suggested to maintain separate Users, Applications, and Groups for each of your clients.

      Yes, you can think of a tenant as an entirely separate installation of FusionAuth. So you'd have to create users, applications and groups for each tenant. Another way of structuring this would be to have an application for each client. Which you choose depends on how much separation you need.

      what is the purpose of multiple application and multiple tenants?

      The main purpose of using tenants in the higher level of separation. If you want each client to have their own FusionAuth theme, API keys, and a separate user space, then you want multi tenant. If you don't care about the themes, tenant scoped API keys, or that someone with the same email address wil have the same password for the application of client A and client B (because both use the same FusionAuth and live in the same tenant, the user will have the same password for each application), then separate FusionAuth applications in the same tenant will work.

    • H

      Installation - Error Connecting to Azure Database for PostgreSQL server

      Q&A
      • • • humaira.tum11
      5
      0
      Votes
      5
      Posts
      9.5k
      Views

      danD

      Regarding all the settings, yes, you'll have to set those up again. There's currently no way to export configuration of a FusionAuth setup.

      What you can do is write a Kickstart file which lets you set up a new FusionAuth instance to be configured just how you want it. You basically build a JSON file which calls the APIs to configure FusionAuth: https://fusionauth.io/docs/v1/tech/installation-guide/kickstart

    • H

      FusionAuth with Asp.net framework 4.5.2

      Q&A
      • • • humaira.tum11
      4
      0
      Votes
      4
      Posts
      3.7k
      Views

      danD

      Hiya,

      I see a method that looks useful: ExchangeOAuthCodeForAccessToken in this file:

      https://github.com/FusionAuth/fusionauth-csharp-client/blob/master/src/main/csharp/FusionAuthClient.cs

      Looks like it was released in version 1.12.0. What version are you using?

      At this point, after the login process, do I have to apply for the token again with username and password? if I want to access the token from API?

      When you get the access token, you can then present it to whatever needs to verify the user is logged in. If you enable refresh tokens, you can store that off and present it for a new access token without the user logging in again. Check out this post about how the authorization code grant works for more details.

      .net core doesn't work with older frameworks of asp.net(4.5.2.) installation error.

      I filed an issue about that. Not sure we can fix it, since ASP.NET 4.5.2 is over 5 years old, but at least we can take a look.