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
    • D

      Webhook user.registration.create.complete triggered for SAML identity provicer

      • • didier
      2
      0
      Votes
      2
      Posts
      3.3k
      Views

      D

      When users come from SAML v2 identity provider and registration is configured to be automatically created, then in these conditions, webhooks on registration users in application are supported ?

    • W

      Unsolved Lambda - Augment JWT with client_credentials/M2M flow

      • • williamjeanmireault
      2
      0
      Votes
      2
      Posts
      2.1k
      Views

      joshuaJ

      @williamjeanmireault

      It sounds like you would like to be able to read state or similar in a lambda (we don't currently allow this)

      In a populate lambda, you do have access to

      Entity Data (https://fusionauth.io/docs/apis/entities/entities) (entity.data)
      This means that you can set any custom field you would like on your entity and use that in a populate worklfow .fetch() https://fusionauth.io/docs/extend/code/lambdas/#using-lambda-http-connect

      So you could access custom data attributes or call out to another system in the lambda

      If you have access to a support contract, you can also log a support ticket if you would like or open a feature request outlining your requirements
      https://fusionauth.io/docs/operate/troubleshooting/technical-support

    • M

      Create a Tenant using API with Golang

      • • milton.jesus
      4
      0
      Votes
      4
      Posts
      3.6k
      Views

      A

      @milton-jesus awesome glad you solved it!!

    • E

      Extends Freemarker variables for custom theme

      • • echino
      2
      0
      Votes
      2
      Posts
      2.7k
      Views

      E

      I found that you can use GET parameters directly inside FTL which works perfectly

      request.getParameter("param")
    • M

      Is there a way to enable or disable captcha at application level?

      • • muditshukla3
      5
      0
      Votes
      5
      Posts
      4.4k
      Views

      mark.robustelliM

      @dan Great catch, no sure how I confused mfa and captcha. Thank you!

    • J

      How do I call a Google API or retrieve the Google credentials?

      • • jacob 0
      22
      0
      Votes
      22
      Posts
      79.7k
      Views

      H

      Thank you for sharing.

    • D

      The Best Ways to Use FusionAuth for Multi-Factor Authentication (MFA)

      • • dom9
      2
      0
      Votes
      2
      Posts
      22.3k
      Views

      R

      "I’m grateful for your support. Thanks a lot!"

    • R

      Bulk Delete / Reactivate

      • • randall
      4
      0
      Votes
      4
      Posts
      7.2k
      Views

      R

      thanks for sharing...

    • E

      Can event logs be sent to stdout?

      • • elliotdickison
      2
      0
      Votes
      2
      Posts
      2.8k
      Views

      mark.robustelliM

      @elliotdickison Check out these posts:

      179 and 2485

    • A

      creating FusingAuth "Application" with SAML 2.0 conneciton - get error "invalid AssertionConsumerServiceURL"

      • • ajbily
      1
      0
      Votes
      1
      Posts
      907
      Views

      No one has replied

    • Y

      Unsolved Bypassing MFA for certain users

      • • ymukundhan
      1
      0
      Votes
      1
      Posts
      3.2k
      Views

      No one has replied

    • B

      MFA is forced also on Identity Provider Users

      • • beezerk
      5
      0
      Votes
      5
      Posts
      9.8k
      Views

      Y

      A client reached out to us with the same issue, they are being forced to configure MFA even though they are doing an SSO login and the issue also seems to be intermittent. Hope Fusionauth comes up with a fix for this

    • G

      Webhooks inside docker containers

      • • ggyurov
      4
      0
      Votes
      4
      Posts
      4.5k
      Views

      danD

      @ronn316 We have some guidance about reaching out from FusionAuth to another machine on the network, but the right answer really depends on what the docker network configuration looks like.

    • T

      FA throwing 500 when trying to login

      • • tiago
      1
      0
      Votes
      1
      Posts
      3.0k
      Views

      No one has replied

    • M

      Allowed origins field capacity to handle 2000 IdP's

      • • mike.rudat
      2
      0
      Votes
      2
      Posts
      9.0k
      Views

      M

      Hi Mike,

      I ran a test where 4000 url's were added to:

      System Settings->CORS->Allowed origins

      I used the

      /api/system-configuration

      API to add the url's. Note, the page itself now takes a significant time to load as 4000 url strings are being rendered.

      Cheers

    • A

      Request timeouts

      • • abdoulaye.sow
      3
      0
      Votes
      3
      Posts
      3.2k
      Views

      M

      @abdoulaye-sow I'm seeing this in the /api/passwordless/start endpoint. The weird thing for us is that even though this is our Dev instance, we have no more than 5 concurrent users at the moment so we certainly shouldn't be overloading the system.

      I'm starting to look into this now, but if you did find anything out I'd love to hear from you

    • A

      Invoice Format

      • • alexander.jordan
      1
      0
      Votes
      1
      Posts
      3.6k
      Views

      No one has replied

    • U

      SMTP outgoing mail server not reliable

      • • uvali
      9
      0
      Votes
      9
      Posts
      4.3k
      Views

      M

      It seems like FusionAuth's email server is acting up, even though SWAKS shows no problems with your own email server. You might want to try using other services like SMTPget or Amazon SES for sending emails through FusionAuth. Make sure your FusionAuth SMTP settings are set up correctly, and if the issue continues, contact FusionAuth support for help fixing it quickly.

    • D

      Using TwoFactorLogin and expose TwoFactorId

      • • didier
      2
      0
      Votes
      2
      Posts
      2.2k
      Views

      mark.robustelliM

      @didier I'm not 100% sure what you mean by "expose twoFactorId in frontend part". I'm assuming you mean give the user a way to input the code. So yes, you will have to allow them a method to input their code and then complete the login. Please see here for more information.

    • D

      Custom registration for user, and use registration response (and token) to continue process with this logged user

      • • didier
      4
      0
      Votes
      4
      Posts
      1.6k
      Views

      K

      @didier hmm, I guess you can do it by registering user in your backend (get username, and password from the user and register a user with those). Then you can just exchange the plain text username, password for JWT tokens and attch them to response cookies. Something like this: https://github.com/kasir-barati/you-say/blob/main/apps/backend-e2e/src/utils/login.util.ts.

      If you're using FusionAuth Typescript client you can do it like this: https://github.com/kasir-barati/you-say/blob/main/packages/backend/auth/src/lib/services/mobile-auth.service.ts#L71