FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. sandesh
    3. Topics
    S
    • Profile
    • Following 0
    • Followers 0
    • Topics 7
    • Posts 15
    • Best 3
    • Controversial 0
    • Groups 0

    Topics created by sandesh

    • S

      Unsolved Proxy Configuration Warning

      Q&A
      • • • sandesh
      2
      0
      Votes
      2
      Posts
      524
      Views

      danD

      Hi @sandesh,

      You should follow the steps outlined there and set up your headers.

      There's more in the proxy configuration guide:

      https://fusionauth.io/docs/v1/tech/admin-guide/proxy-setup

      Hope that helps.

    • S

      Solved Add User to group not working

      Q&A
      • group addusertogroup • • sandesh
      3
      0
      Votes
      3
      Posts
      855
      Views

      mark.robustelliM

      @sandesh Thanks for sharing her on the forum. Hope you are able to accomplish your end goal with the APIs.

    • S

      Unsolved Membership Data

      Q&A
      • • • sandesh
      5
      0
      Votes
      5
      Posts
      902
      Views

      S

      @mark-robustelli Thank you Mark..! I will keep in mind.

    • S

      Unsolved Custom data with membership field

      Q&A
      • • • sandesh
      2
      0
      Votes
      2
      Posts
      500
      Views

      danD

      @sandesh Thanks for using FusionAuth!

      I wanted to know if we can pass a custom data with membership field with JWT token.

      You should be able to grab it out of user.memberships in the JWT populate lambda. I just tested this out:

      console.log('membs: '+JSON.stringify(user.memberships));

      and I see the data field.

      If yes, can we configure a field from front end like we can do for a User registration page where the field is passed as user.data.fieldName.

      This is not possible now. The only objects on which you can set custom data using the registration form are user and registration.

      Since you can't add a membership at registration time, I'd suggest using a webhook on registration completion to populate the membership.data field.

    • S

      Solved CORS error while importing Users

      Q&A
      • • • sandesh
      8
      0
      Votes
      8
      Posts
      1.1k
      Views

      danD

      @sandesh Great, glad you figured it out!

    • S

      Unsolved Token not received inside Docker with Express JS

      Q&A
      • • • sandesh
      2
      0
      Votes
      2
      Posts
      463
      Views

      B

      Without understanding your setup completely, is the callback happening in a server-to-server call? If so, localhost doesn't work.

      For example when I wanna call the elastic search container from fusion auth, I cannot call it as http://localhost:9200. For instance if the setup is

      fusionauth-search: image: docker.elastic.co/elasticsearch/elasticsearch:8.5.0 container_name: fusionauth-search environment: cluster.name: fusionauth networks: - data-layer restart: unless-stopped ports: - '9011:9011'

      I will need to call it via http://fusionauth-search:9200. You can also see such a setup in Fusion Auth's documentation on setting up Fusion Auth in docker-compose at https://fusionauth.io/docs/v1/tech/installation-guide/docker. You notice that the URLs will refer to the container names.

      I hope this helps.

    • S

      Unsolved Error in Group creation

      Q&A
      • • • sandesh
      4
      1
      Votes
      4
      Posts
      668
      Views

      danD

      @sandesh I'd suggest using a UUID generator. Most programming languages have one, or you can use FusionAuth's: https://fusionauth.io/dev-tools/uuid-generator