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

      Do password rules apply to existing users?

      password rules complexity existing users • • dan
      2
      0
      Votes
      2
      Posts
      879
      Views

      danD

      The rules apply only when they change their password in the future.

      We don't have any way of knowing the user's current password.

      You can, of course, force the user to change their password, and then the new password rules would apply. You can do this in the admin ui or via updating the passwordChangeRequired field in the user object via the API.

    • danD

      Stacktrace when visiting a URL with weird characters

      tomcat stack trace logging error • • dan
      2
      0
      Votes
      2
      Posts
      2.7k
      Views

      danD

      In 1.19.5, we handle most of these cases by configuring tomcat to allow certain characters to be unescaped in the URL.

      https://github.com/FusionAuth/fusionauth-issues/issues/635

      So an upgrade is the most straightforward way to handle this.

      If you are proxying FusionAuth (behind something like nginx) you could also capture and hide any 500 errors: https://stackoverflow.com/questions/8715064/nginx-not-serving-my-error-page/8715597#8715597.

    • S

      Is there a way to send the user to the hosted signup or login form when opening?

      • • shanon
      4
      0
      Votes
      4
      Posts
      7.2k
      Views

      S

      Ok, thanks @dan and @robotdan ! I think a combination of both your responses gets me what I need. Much appreciated!

    • F

      How do i test idp login?

      • • fusionauth_user
      2
      0
      Votes
      2
      Posts
      3.0k
      Views

      danD

      I would do one of two things:

      consult the google docs about what is returned create a lambda to write the idToken json object provided by google to the event log, then login and view the event log to see what is provided.

      More on the google reconcile lambda here: https://fusionauth.io/docs/v1/tech/lambdas/google-reconcile

    • danD

      Logging format for FusionAuth

      logging fargate • • dan
      2
      0
      Votes
      2
      Posts
      3.0k
      Views

      danD

      We use logback.

      As of version 1.19.0, here is the logging pattern: <pattern>%d{"yyyy-MM-dd h:mm:ss.SSS a"} %-5level %logger{75} - %msg%n</pattern>

      Older versions, prior to 1.19.0, use this pattern <pattern>%d{"MMM dd, yyyy h:mm:ss.SSS a"} %-5level %logger{75} - %msg%n</pattern>.

    • danD

      Password complexity rules?

      password rules complexity • • dan
      2
      0
      Votes
      2
      Posts
      1.8k
      Views

      danD

      Head over to the admin, and click tenants.

      There you will find your default tenant. edit that to change your password strength etc.

      (You can also do that for multiple tenants if you have them or via the Tenants API.)

    • S

      This topic is deleted!

      • • strix
      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • A

      Token type?

      jwt access tokens python fusionauth • • AliMirlou
      3
      0
      Votes
      3
      Posts
      7.4k
      Views

      A

      Seems like the library I used is opinionated. Thanks for the hints.

    • V

      Is this a common Dusion Auth error: Unable to decode incoming request

      • • vrademacher
      4
      0
      Votes
      4
      Posts
      701
      Views

      danD

      @vrademacher ah, great, that wasn't clear to me!

      Then while the forum and community support might be able to help, I'd recommend filing a support ticket by logging into account.fusionauth.io and going to the support tab.

      Feel free to reference this forum post if you'd like.

      If you'd like to continue to debug this issue here, can you please give me a bit more info?

      It'd be great to know:

      the version of fusionauth where you are encountering the issue the login flow (login api, oauth authorization code grant, etc) the browser the customer is using anything unique about the customer as opposed to other customers that are not having this issue
    • danD

      Are FusionAuth access tokens always JWTs?

      jwt access tokens • • dan
      2
      0
      Votes
      2
      Posts
      1.5k
      Views

      danD

      Yes. While OAuth2 access tokens aren't guaranteed by the spec to be JSON web tokens, in FusionAuth access tokens are always JWTs.

    • A

      When is `introspect` endpoint needed?

      • • AliMirlou
      6
      0
      Votes
      6
      Posts
      7.6k
      Views

      A

      @robotdan Also, it was actually me who opened the mentioned issue. ๐Ÿ˜…

    • M

      Gatsby + Hasura + FusionAuth + KintoHub (My Dream Stack)

      fusionauth gatsby gatsbyjs hasura kintohub • • mrstudyfirst
      8
      0
      Votes
      8
      Posts
      11.5k
      Views

      F

      yeah, pretty simple really, if you want to try it yourself before my tutorial is out, try using the hasura cloud + Auth0 tutorial on Hasura's site, and use the lessons from that to use it with fusionauth.

    • danD

      FusionAuth application id

      application ids • • dan
      2
      0
      Votes
      2
      Posts
      1.6k
      Views

      danD

      Yes, it's the fusionauth application id, defined here: https://github.com/FusionAuth/fusionauth-java-client/blob/master/src/main/java/io/fusionauth/domain/Application.java

    • B

      Telegram bot user authentication

      • • bogorad
      8
      0
      Votes
      8
      Posts
      5.4k
      Views

      danD

      Awesome. Just wanted to make sure you weren't expecting to be able to encrypt anything in the browser and keep it secret ๐Ÿ™‚ .

    • danD

      How can I sync my RSA or Elliptical keypairs between environments?

      rsa keypair keys public private elliptical • • dan
      2
      0
      Votes
      2
      Posts
      1.2k
      Views

      danD

      If you need to keep everything in sync between your dev, staging and production systems, I believe the best way to accomplish that is to create the key-pair outside of FusionAuth and use the โ€œImport RSA key pairโ€ functionality.

      If you are using the UI, you can find that under "Settings -> Key master". The button in the upper right hand corner lets you select between the different options:

      Screen Shot 2020-09-24 at 1.48.38 PM.png

      You can of course also use the API to import the keys: https://fusionauth.io/docs/v1/tech/apis/keys

    • S

      Performance issues even with a 8 Core + 32 gigs.

      java performance • • sswami
      21
      0
      Votes
      21
      Posts
      86.3k
      Views

      danD

      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

    • T

      Revalidate on login always forcing password reset

      • • tom.hynard
      5
      0
      Votes
      5
      Posts
      869
      Views

      danD

      @tom-hynard if you update to 1.19.7, this bug should be fixed: https://github.com/FusionAuth/fusionauth-issues/issues/880

    • danD

      IIS as a reverse proxy?

      proxy iis reverse • • dan
      2
      0
      Votes
      2
      Posts
      1.3k
      Views

      danD

      We don't have any IIS guides for a proxy, but this guide looks like it would work: https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/reverse-proxy-with-url-rewrite-v2-and-application-request-routing

      The key is that version 1.19.x of FusionAuth is completely stateless so the proxy can round-robin and no session pinning is required. If you are using a version of FusionAuth before 1.19, you'll need to pin your session to ensure that you can log into the administrative interface.

    • M

      Fusionauth will work in mysql enviroment?

      • • muthu.tvg
      3
      0
      Votes
      3
      Posts
      595
      Views

      M

      @dan Thanks for your reply

    • M

      Not able to install fusion Auth in my local wamp server windows based machine

      • • muthu.tvg
      4
      0
      Votes
      4
      Posts
      749
      Views

      danD

      What version of mysql are you running?

      You might want to check the section on mysql and unicode here as that has caused problems for others: https://fusionauth.io/community/forum/topic/243/installation-problem/15