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

      Unsolved How to auto get the first/last name of user on sso external idp samlv2 login? and redirect to our site login handler?

      • • ken
      2
      0
      Votes
      2
      Posts
      509
      Views

      danD

      @ken Did you get this resolved?

    • K

      Unsolved How to get whether user is using sso?

      • • ken
      2
      0
      Votes
      2
      Posts
      550
      Views

      danD

      @ken Hiya,

      I don't think this is currently available via API. The closest issue I could find was this: https://github.com/FusionAuth/fusionauth-issues/issues/1515

      I can't commit to a timeline for this feature being built out, however.

      Please upvote that and/or add a comment illustrating your use case.

    • 2

      Unsolved Forgot password API

      • • 2kayush.125
      2
      0
      Votes
      2
      Posts
      582
      Views

      danD

      @2kayush-125 It's in the tenant settings.

      The UI is documented here: https://fusionauth.io/docs/v1/tech/core-concepts/tenants#advanced (look for "Change Password")

      The API is documented here: https://fusionauth.io/docs/v1/tech/apis/tenants (look for tenant.externalIdentifierConfiguration.changePasswordIdTimeToLiveInSeconds)

      Hope this helps.

      Thanks for using FusionAuth!

    • K

      Unsolved How to show "Login with SAML" button on our own site for fusionauth application that has sso?

      • • ken
      2
      0
      Votes
      2
      Posts
      542
      Views

      danD

      @ken

      Hiya,

      The information about whether an application has an IdP configured for it is stored on the identity provider object, not on the application.

      So the easiest way to answer your question is to retrieve all the identity providers (or one, if you have a target), then filter through the JSON looking for your application id.

      https://fusionauth.io/docs/v1/tech/apis/identity-providers/#retrieve-all-identity-providers shows how to list all Identity Providers.

      If you look at the results, you'll see a field similar to:

      "applicationConfiguration": { "1c212e59-0d0e-6b1a-ad48-f4f92793be32": { "createRegistration": true, "enabled": true } },

      for each of the identity providers.

      The applicationConfiguration has keys, each of which is an application Id.

      Does that help?

    • P

      Unsolved Maintenance Mode DB creation fails without message with PostgreSQL 15 on Windows

      • • pclark
      2
      0
      Votes
      2
      Posts
      2.6k
      Views

      danD

      @pclark

      Thanks for sharing this. I filed an issue based on your helpful post.

    • K

      Unsolved Linking strategy not available anymore?

      • • ken
      2
      0
      Votes
      2
      Posts
      736
      Views

      danD

      @ken

      Hiya,

      Sorry, I'm a bit confused.

      What version of FusionAuth are you running? Which type of identity provider are you setting up?

      I just logged into our sandbox instance: sandbox.fusionauth.io and was able to add an identity provider and edit it and saw the "Linking Strategy" both times.

      Thanks,
      Dan

    • Y

      Unsolved How is the fusionauth.sso cookie encoded in version 1.36?

      • • yb98
      2
      0
      Votes
      2
      Posts
      2.1k
      Views

      danD

      @yb98

      Heya, this isn't something we document, so it is considered an implementation detail that could change at any time.

      You could file an issue asking this to be codified and documented, but I'm not sure we'd do that. It's more likely we'd do something like this: https://github.com/FusionAuth/fusionauth-issues/issues/1515

      Thanks for using FusionAuth!

    • D

      Why can't I disable X-Frame-Options or use CSP instead?

      • • duane
      5
      0
      Votes
      5
      Posts
      2.8k
      Views

      K

      You cannot display a lot of websites inside an iFrame. Reason being that they send an "X-Frame-Options: SAMEORIGIN" response header. This option prevents the browser from displaying iFrames that are not hosted on the same domain as the parent page.

      I faced the same error when displaying YouTube links. For example: https://www.youtube.com/watch?v=8WkuChVeL0s

      I replaced watch?v= with embed/ so the valid link will be: https://www.youtube.com/embed/8WkuChVeL0s

      It works well.

      Try to apply the same rule on your case.

      SAMEORIGIN

      The page can only be displayed in a frame on the same origin as the page itself. The spec leaves it up to browser vendors to decide whether this option applies to the top level, the parent, or the whole chain, although it is argued that the option is not very useful unless all ancestors are also in the same origin.

    • P

      Solved Set up SSL for Netty

      • • pclark
      4
      0
      Votes
      4
      Posts
      2.2k
      Views

      P

      @voidmain Thank you!

    • E

      Unsolved Authorization Code Flow: from Auth0 to FusionAuth

      • • etienne.caldo
      2
      0
      Votes
      2
      Posts
      508
      Views

      J

      @etienne-caldo Hey Etienne, this is a good question, there is some context that goes behind it and usually we would want to have a discovery coffee session to elaborate on the matter. Let me know if this is of interest to you.

    • danD

      Unsolved Can I revoke an access token in FusionAuth?

      • • dan
      2
      0
      Votes
      2
      Posts
      1.1k
      Views

      danD

      No.

      You can't explicitly revoke an access token in FusionAuth. We don't support RFC 7009: https://www.rfc-editor.org/rfc/rfc7009.html and based on the number of upvotes for this, I don't know if the community wants us to: https://github.com/FusionAuth/fusionauth-issues/issues/201 But if you do, feel free to upvote that issue.

      If you want to have an access token become invalid, you have to manage it yourself. That is what is outlined in this article.

      The process is basically:

      set up webhooks to fire to all the resource servers when a refresh token is invalidated (when the user logs out) listen for that event, and when it occurs, record the user with the invalid token in the resource server (in redis, db, etc) next time an access token is presented, verify that it is not for a user who has logged out

      If you want to handle the case where a user logs out, then logs back in quickly, then the time based logic in the Webhooks section here: https://fusionauth.io/learn/expert-advice/tokens/revoking-jwts needs to be implemented.

    • S

      Unsolved JWT public keys are empty

      • • stacey
      3
      1
      Votes
      3
      Posts
      1.1k
      Views

      S

      Thanks for the update!

    • D

      Unsolved FusionAuth with Fly.io

      docker docker-compose documentation developers postgres • • duke
      2
      0
      Votes
      2
      Posts
      2.4k
      Views

      danD

      For future readers, @duke wrote up an entire article about this: https://medium.com/@osain/deploying-fusionauth-docker-on-fly-io-8fbeb0469556

    • T

      Unsolved Does 'POST /api/two-factor/start' also send out mails/sms

      • • t.vanherwijnen
      2
      0
      Votes
      2
      Posts
      535
      Views

      joshuaJ

      @t-vanherwijnen

      Thanks for the question! I believe that you might want to reference this bit of doco

      https://fusionauth.io/docs/v1/tech/guides/multi-factor-authentication#optionally-send-the-code

      Thanks,
      Josh

    • D

      Solved Password reset always fails with "Your password reset code has expired or is invalid."

      • • derjan
      2
      0
      Votes
      2
      Posts
      706
      Views

      D

      Got the right answer in the Slack channel – I needed to update the theme templates too 🙂

    • S

      Unsolved SMTP Fails, no debug details

      • • support 0
      6
      0
      Votes
      6
      Posts
      2.6k
      Views

      danD

      @support-0 also, what version of FusionAuth are you running? There were some issues with the SMTP debug log that were resolved in 1.37.0: https://fusionauth.io/docs/v1/tech/release-notes#version-1-37-0

    • Y

      Unsolved Does FusionAuth track multiple SSO sessions for LDAP users?

      • • yb98
      5
      0
      Votes
      5
      Posts
      2.9k
      Views

      Y

      @dan

      Thanks!
      I made the new issue https://github.com/FusionAuth/fusionauth-issues/issues/1907

    • M

      Solved FusionAuth encountered an unexpected error. Please review the troubleshooting guide found in the documentation for assistance and the available support channels.

      • • M Sharif
      4
      0
      Votes
      4
      Posts
      3.7k
      Views

      joshuaJ

      @prawee

      Glad to hear it. Issues such as this can require a bit more context to debug. Feel free to post log output if the issue persists or log a bug report below (if considered a bug)

      https://github.com/FusionAuth/fusionauth-issues/issues/new/choose

      Thanks,
      Josh

    • S

      Unsolved "FusionAuth encountered an unexpected error" during initial post-install setup/maintenance

      • • steven.bedford
      2
      0
      Votes
      2
      Posts
      7.8k
      Views

      joshuaJ

      @steven-bedford

      We may need more information regarding your setup. If you feel like you are having a bug, I would encourage you to log one below:

      https://github.com/FusionAuth/fusionauth-issues/issues/new/choose

      Thanks,
      Josh

    • N

      Unsolved OIDC Identity Provider Claims

      • • nathan
      3
      0
      Votes
      3
      Posts
      1.5k
      Views

      danD

      Updated the documentation to reflect where the claims are pulled from more precisely: https://github.com/FusionAuth/fusionauth-site/pull/1636

      Please do let me know about the escaping of the claim when you get a chance, @nathan .