FusionAuth
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    • Login
    1. Home
    2. Categories
    3. General Discussion
    Log in to post
    Load new posts
    • Recently Replied
    • Recently Created
    • Most Posts
    • Most Votes
    • Most Views
    • S

      Is it possible to allow a user to have many email addresses ?

      • • simo.adonis
      4
      0
      Votes
      4
      Posts
      1.4k
      Views

      danD

      @simo-adonis This is not possible with FusionAuth currently.

      Here's the tracking issue: https://github.com/fusionauth/fusionauth-issues/issues/1

    • J

      Facebook and appsecret_proof

      • • jojo.serquina
      4
      0
      Votes
      4
      Posts
      1.6k
      Views

      danD

      @jojo-serquina Thanks!

      For any future readers, you can see the state of this feature request here: https://github.com/FusionAuth/fusionauth-issues/issues/1536

    • S

      Clone / Copy Application

      • • support 0
      3
      0
      Votes
      3
      Posts
      1.3k
      Views

      S

      @dan That will work just fine. With that I'll actually just make a quick service that takes in the arguments to adjust and it generate that json for me. Thanks!

      Just because it would align with all my other triggered processes, I'll actually make it as a postgres function so I can call it with my graphql api via hasura. This will actually work very well.

    • F

      Proxy Warning with NLB before Ingress

      • • faisal.jamil
      4
      0
      Votes
      4
      Posts
      2.6k
      Views

      danD

      @faisal-jamil

      FusionAuth, as you can see, doesn't like to be run without being assured TLS is involved. That is what the warnings are about. It relies on the X-Forwarded-Proto to be assured that TLS is involved.

      It looks like you have this:

      User -> (TLS) -> Internet -> (TLS) -> NLB -> (HTTP) -> Ingress -> (HTTP) -> FusionAuth

      Which seems like a fine architecture (because from the NLB to FusionAuth is presumably a private, secure network, so TLS is not needed). The question is, how do you tell FusionAuth that things are okay? That's why I suggested trying to set the header.

      I do not know how to modify X-Forwarded-Proto to https, without terminating at the Ingress controller.

      I also do not know how to do this. I suggest reviewing the AWS documentation and/or contacting AWS support.

      If you have a FusionAuth edition including support, you can also file a support ticket and the engineering team will take a look. (If you do that, please reference this forum post.)

    • A

      Installing FusionAuth Service

      • • aperkins
      3
      0
      Votes
      3
      Posts
      1.2k
      Views

      S

      @aperkins look in your oauth config for the app, inside FA, or the tenant config.

      The redirect url is set there. Also , your app may be supplying a url as the redirect with that URL and it is not matching what's configured as the allowed redirect URLs in FA.

    • F

      WebhookRequest error

      • • fedir.sinchuk
      2
      0
      Votes
      2
      Posts
      587
      Views

      joshuaJ

      @fedir-sinchuk,

      I am not very familiar with terraform myself. Have you resolved this issue or can you provide any more context feedback about what you are attempting to accomplish and any additional errors you are seeing?

      Thanks,
      Josh

    • W

      This topic is deleted!

      • • wangr8111
      1
      0
      Votes
      1
      Posts
      13
      Views

      No one has replied

    • L

      This topic is deleted!

      • • ldrgmlnc0852
      1
      0
      Votes
      1
      Posts
      9
      Views

      No one has replied

    • L

      This topic is deleted!

      • • lisawilliams0078
      1
      0
      Votes
      1
      Posts
      4
      Views

      No one has replied

    • M

      Blocked autofocusing on a <input> element in a cross-origin subframe.

      • • melichpelegri
      2
      0
      Votes
      2
      Posts
      4.9k
      Views

      danD

      @melichpelegri I'm not sure what you mean by silent refresh. Can you explain?

    • B

      This topic is deleted!

      • • beatricejessie173
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • D

      This topic is deleted!

      • • danielbaird475
      1
      0
      Votes
      1
      Posts
      11
      Views

      No one has replied

    • N

      This topic is deleted!

      • • nfkjasfasdf
      1
      0
      Votes
      1
      Posts
      5
      Views

      No one has replied

    • F

      This topic is deleted!

      • • francis.ducharme
      1
      0
      Votes
      1
      Posts
      5
      Views

      No one has replied

    • M

      Azure Authentication using OpenID Against FusionAuth?

      • • matt 1
      2
      0
      Votes
      2
      Posts
      2.2k
      Views

      joshuaJ

      @matt-1

      I will let my colleagues and community teammates chime in, having not written an Azure integration into FusionAuth as of yet. However, here is my two cents:

      If FusionAuth is the source of record, you will want to review the documentation that Azure AD provides and see if you can call into FusionAuth via OAuth2 or SAML or JWT from them.

      Googling azure storage blob authentication via jwt token returns many promising possibilities that look relevant.

      Another wrinkle is that you are likely asking for a permissions-based model below:

      Azure Storage Blog (or some intermediary) authenticates backs to FusionAuth to check whether the user is authorized for the piece of content or not.

      This might require you to handroll your own solution or explore others that are prebuilt. Roles and groups are one area in FusionAuth that you could use to assign some level of access to your users. With some integration code, you could help your application determine what storage they should have access to.

      https://fusionauth.io/docs/v1/tech/apis/groups/ https://fusionauth.io/docs/v1/tech/core-concepts/roles/#overview

      I hope this helps and will post back if anything additional occurs to me.

      Thanks
      Josh

    • M

      This topic is deleted!

      • • melvin.tkuntz
      1
      0
      Votes
      1
      Posts
      5
      Views

      No one has replied

    • E

      Fusion auth login error - react-native

      • • erick
      4
      0
      Votes
      4
      Posts
      3.9k
      Views

      joshuaJ

      @erick

      Apologies for the delay. I was not able to test the andriod portion of this very well on my Mac. Is this still an open issue for you?

      Thanks,
      Josh

    • R

      To Get Applications and all it's associated roles

      • • ravikiran.sattigeri
      2
      0
      Votes
      2
      Posts
      3.5k
      Views

      joshuaJ

      Hi @ravikiran-sattigeri,

      All applications can be retrieved via this API -

      https://fusionauth.io/docs/v1/tech/apis/applications/#retrieve-an-application

      The roles should be attached to the returned object under a roles array.

      If you could provide some additional context around what you are attempting to accomplish, we may be able to provide additional feedback.

      If you have a support contract, please file a ticket via your Zendesk or Slack channels for additional questions. Thanks!

      Thanks,
      Josh
      FusionAuth

    • F

      SMS send limit

      • • faisal.jamil
      2
      0
      Votes
      2
      Posts
      6.0k
      Views

      danD

      @faisal-jamil

      You must buy another service like twilio. FusionAuth itself never sends SMSes.

      Limits are set by that third party service.

    • C

      SAML logout request causing 500 error in FusionAuth

      • • chk543
      2
      0
      Votes
      2
      Posts
      695
      Views

      danD

      @chk543

      Did you end up solving this?