Navigation

    FusionAuth
    • Login
    • Search
    • Home
    • Categories
    • Recent
    • Popular
    • Pricing
    • Contact us
    • Docs
    1. Home
    2. Popular
    Log in to post
    • All categories
    • All Topics
    • New Topics
    • Watched Topics
    • Unreplied Topics
    • All Time
    • Day
    • Week
    • Month
    • R

      UNSOLVED workflow for self registration
      General Discussion • • richb201

      35
      0
      Votes
      35
      Posts
      1444
      Views

      dan

      Hard to know exactly what's going on.

      I would try creating another tenant and seeing if the same SMTP settings fail. Then I'd try standing up a version with the very latest FusionAuth version and seeing if you see the same behavior.

      Also, do you have the same tenant smtp settings? That is under the "advanced" tab, then "smtp settings".

    • R

      invalid_redirect_uri
      General Discussion • • richb201

      32
      0
      Votes
      32
      Posts
      4847
      Views

      joshua

      @richb201

      The documentation says that this is optional. But not in my case.

      Can you elaborate on where you found this in the doc?

      The error should say missing "X-FusionAuth-TenantId"

      Can you elaborate on this?

      When I get back the "code" do I need to manually convert it to a token, or is this done automatically?

      You may want to review our OAuth guide. Using a OAuth2 flow, it is common to have two separate endpoints (authorize and token) to obtain access. The "code" is returned from FusionAuth and is used (in conjunction with a few other possible factors) to obtain an access token (in our typescript client, this is the client.exchangeOAuthCodeForAccessTokenUsingPKCE function)

      We do have a few tutorials as well, that show this in action (nodeJS tutorial being one of them)

      Lastly, for general housekeeping's sake, this thread is getting a bit long, with a few related posts clumped together. For future questions, if the question is unrelated to the posts immediately above, it might be good to open a new thread.

    • V

      Identity Provider with no email?
      Q&A • • valentin.alt.raltchev99

      30
      0
      Votes
      30
      Posts
      1805
      Views

      T

      It looks like setting the email address in a lambda works for Facebook now (as of at least 1.41.2):

      if (!facebookUser.email) { user.email = facebookUser.id + '@no-email.facebook.com'; } 1/10/2023 10:10:33 PM Z Linking strategy [LinkByEmail] 1/10/2023 10:10:33 PM Z Resolved email to [] 1/10/2023 10:10:33 PM Z Resolved username to [null] 1/10/2023 10:10:33 PM Z Resolved unique Id to [115587478085870] 1/10/2023 10:10:33 PM Z Identity provider returned a unique Id [115587478085870]. 1/10/2023 10:10:33 PM Z A link has not yet been established for this external user. 1/10/2023 10:10:33 PM Z The user with the email address [] does not exist. 1/10/2023 10:10:33 PM Z Invoke configured lambda with Id [787cd34e-1618-4cd9-8156-936734cfe368] 1/10/2023 10:10:33 PM Z The lambda set or modified the initially resolved email. Email is now [115587478085870@no-email.facebook.com] 1/10/2023 10:10:33 PM Z Creating user: 1/10/2023 10:10:33 PM Z User is not registered for application with Id [e0da3f10-7efa-4a6b-95f8-fbf4894884b5] 1/10/2023 10:10:33 PM Z User has successfully been reconciled and logged into FusionAuth. 1/10/2023 10:10:33 PM Z Authentication type: FACEBOOK 1/10/2023 10:10:33 PM Z Authentication state: Authenticated
    • R

      Login with Magic Link?
      General Discussion • • richb201

      29
      0
      Votes
      29
      Posts
      1818
      Views

      dan

      But if I put these in the application, won't this be a security problem?

      If you put them in a javascript app, yes. But if they are in the php application only, then it'll be like a database password. Not really a security issue.

      You could also inject them as an environment variable or pull from a secrets manager; however you manage your database credentials, I'd suggest doing the same with the client id/secret.

    • R

      fusioAuth install is damaged?
      General Discussion • • richb201

      29
      0
      Votes
      29
      Posts
      1218
      Views

      R

      @maciej-wisniowski That was done when we found that there was a bug in

      #FROM fusionauth/fusionauth-app:1.19.4

      and we replaced it with:

      FROM fusionauth/fusionauth-app:1.19.7

    • D

      Can't get by Maintenance Mode
      Q&A • • dtokarz1

      25
      0
      Votes
      25
      Posts
      4116
      Views

      dan

      🎆 🎆 🎆

      Awesome!

    • M

      SAML SSO for Mattermost using FusionAuth
      General Discussion • • misterjoj

      21
      0
      Votes
      21
      Posts
      946
      Views

      M

      thanks , I will do just that

      Best Regards,

    • S

      Performance issues even with a 8 Core + 32 gigs.
      Q&A • java performance • • sswami

      21
      0
      Votes
      21
      Posts
      871
      Views

      dan

      Thanks @sjswami , this duplicate ids issue is now resolved in 1.19.7. Appreciate you letting us know about it: https://github.com/FusionAuth/fusionauth-issues/issues/890

    • E

      Error after updating the password
      Q&A • • erick

      21
      0
      Votes
      21
      Posts
      1152
      Views

      joshua

      @maciej-wisniowski

      Glad that you are able to figure it out. I am not sure if that qualifies as a bug, but definitely something to be aware of and might be worth calling out in our documentation.

      I believe that you should have email templates after a kickstart (at least the default ones). I can do some more testing to see if that same thing happens to me when I kickstart.

      Thanks,
      Josh

    • R

      where to find the /api/status response?
      General Discussion • • richb201

      17
      0
      Votes
      17
      Posts
      18086
      Views

      R

      solved. I needed to type DELETE.

    • R

      SOLVED Hosting on RDS
      General Discussion • • richb201

      17
      0
      Votes
      17
      Posts
      780
      Views

      dan

      Thanks awesome @richb201 !

      I'm glad you were able to sort it out!

    • R

      Manually verifying a JWT
      Q&A • • raghebmichael

      16
      0
      Votes
      16
      Posts
      1844
      Views

      dan

      @bharath-yadavally Glad you're getting it figured out!

    • N

      Trouble getting the user object post login
      Q&A • login python sessions user • • nishant

      16
      0
      Votes
      16
      Posts
      823
      Views

      A

      @dan Thank you for your support. Fixing the signature just saved me another couple of hours (also coming from https://fusionauth.io/blog/2020/07/14/django-and-oauth/) ^^

    • X

      Problems logging in user through C# API call
      Q&A • • xan

      16
      0
      Votes
      16
      Posts
      1021
      Views

      B

      @xan said in Problems logging in user through C# API call:

      when I do "http://localhost:5000", currently it just gets a "localhost refused to connect."?

      Generally this happens when the service running on your localhost has some problem resolving the request. If you have access to logs, please see logs for more details on the error. Also, make sure the application interface, server, and services are running. There are many situations that might trigger “this site can't be reached” error in browsers. Sometimes the server is still running but the interface application is closed or the database is down. If your application interface and server is up but a dependent service is down then restart your computer/server and restart services. Make sure the app is bound to localhost. It may just be bound to an individual interface. netstat -na will give you the clues you need. Run a port scan on your computer and make sure the port is opened.

      The problem may happens for failing on DNS lookup . DNS is that network address that translates the website name to its internet address. Most often it causes for not getting the internet connection or misconfigured internet or network settings. Another reason could be the firewall preventing Google Chrome to load the webpage. However, other reasons, such as insufficient permissions or the Apache web server not running properly might also cause the error.

    • J

      SSO not working inside iframe
      Q&A • • joseantonio

      16
      0
      Votes
      16
      Posts
      7256
      Views

      joshua

      @joseantonio Glad to hear it!

    • C

      How to open identity provider directly?
      Q&A • • cepahap854

      15
      0
      Votes
      15
      Posts
      26630
      Views

      robotdan

      Related GitHub issue with details.
      https://github.com/FusionAuth/fusionauth-issues/issues/178

    • M

      Installation Problem
      General Discussion • • michael.collis

      15
      0
      Votes
      15
      Posts
      736
      Views

      M

      Hi,

      Thank you for this i have managed to get past the issue with the database i changed to to postgres SQL and it worked fine, I'm just to figure out if i can ass Exchange 2016 to this application so users are made to get a Auth code before they can logon to exchange.

      Thanks,

    • B

      LDAP LAMBDA
      General Discussion • • bradley.kite

      15
      0
      Votes
      15
      Posts
      595
      Views

      B

      In case anyone else would like to do the same, I have found a solution which I have detailed here:

      https://github.com/FusionAuth/fusionauth-issues/issues/822#issuecomment-680172776

    • D

      Multiple nodes sharing IP address?
      Q&A • • davidmw

      14
      0
      Votes
      14
      Posts
      648
      Views

      dan

      I wrote a guide for running fusionauth in a clustered/multi node setup: https://fusionauth.io/docs/v1/tech/installation-guide/cluster/

      The bug about the ip addresses being the same (which was only a display bug, not a functionality bug) was also addressed in 1.23.0: https://fusionauth.io/docs/v1/tech/release-notes/#version-1-23-0

    • N

      FusionAuth + NextAuth refresh tokens
      Q&A • • naughtly.keller

      14
      1
      Votes
      14
      Posts
      1802
      Views

      joshua

      @naughtly-keller or @sander

      Not sure if one of you were the creator of this?

      https://next-auth.js.org/providers/fusionauth

      or if not, at the very least I wanted to pass along the additional info that is now available 🙂

      Thanks,
      Josh