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

      Admin UI actions over themes blocks application since 1.61.2

      General Discussion
      • • • david.cuen
      10
      0
      Votes
      10
      Posts
      251
      Views

      D

      @mark-robustelli The size of the tpl folders for each theme is around 352 KB - 404 KB.

      I would like to mention that the hang occurs when launching the instance in a Linux environment with the Docker image.
      If I launch a local instance on a Windows computer against the same PostgreSQL database, the hang problem does not occur.

      Version: 1.62.1
      Platform: Windows 11 10.0 amd64

      Instances are launched with ENV var:
      FUSIONAUTH_APP_MEMORY=1024M
      DATABASE_CONNECTION_HEALTHCHECK_99PERCENT_MS=500

      When consulting Prometheus metrics with /api/status after the instance has recovered from the hang, errors appear in the theme search

      "prime-mvc.[/api/theme/search].errors": { "count": 2, "fifteenMinuteRate": 0.001224500060165843, "fiveMinuteRate": 0.002437052376257949, "meanRate": 0.0012614192847508726, "oneMinuteRate": 0.003282810949244636 },

      Any idea how to find the error that occurs in the internal call from fusionauth admin app to its API?

    • A

      Unsolved Pass value from API to webhook

      Q&A
      • • • alexandros.nafas
      3
      0
      Votes
      3
      Posts
      412
      Views

      mark.robustelliM

      @alexandros-nafas , were you able to figure it out?

    • H

      Unsolved FusionAuth Cloud requests timing out continuously (admin UI + auth flows)

      Q&A
      • • • hemanth18pages
      2
      0
      Votes
      2
      Posts
      47
      Views

      mark.robustelliM

      @hemanth18pages raising the support ticket is the way to go for sure. It will be good to know if anyone else is experiencing this too.

    • V

      Unsolved can't use fusion auth react sdk when fusion auth server runs locally on fusionauth.localhost:

      Q&A
      • • • valerii15298
      5
      0
      Votes
      5
      Posts
      2.9k
      Views

      mark.robustelliM

      @bernardo-munz Did you play with the SameSite setting?

    • S

      Unsolved oauthConfiguration.clientSecret is missing on /api/application/search response since 1.62.0

      Q&A
      • • • simon.chrzanowski
      2
      0
      Votes
      2
      Posts
      251
      Views

      mark.robustelliM

      @simon-chrzanowski can you please share the code you using? (please be sure to hide anything sensitive like your API Key)

    • T

      Error getting list application due to sql error (mysql)

      Comments & Feedback
      • • • traperwaze
      5
      0
      Votes
      5
      Posts
      25.7k
      Views

      R

      @dan said in Error getting list application due to sql error (mysql):

      @traperwaze said in Error getting list application due to sql error (mysql):

      MariaDB server

      I believe the issues is that we don't support MariaDB.

      This is a known issue: https://github.com/FusionAuth/fusionauth-issues/issues/367 poki

      Do you see the same issue with a supported version of MySQL or PostgreSQL?

      Thanks for confirming. That lines up with what I’m seeing as well. We are indeed running MariaDB, and it looks like the JSON operator (->>) used in that query isn’t supported the same way in MariaDB, which would explain the syntax error.

      We haven’t tested this yet on a supported database, but based on the linked issue and your comment, it does appear to be a MariaDB compatibility problem rather than a misconfiguration on our side. We’ll plan to test against a supported version of MySQL and/or PostgreSQL to confirm.

      Appreciate you pointing us to the GitHub issue — that helps clarify things a lot.

    • D

      Prometheus is dropping samples with duplicate timestamps

      General Discussion
      • • • dalamenona
      3
      0
      Votes
      3
      Posts
      1.1k
      Views

      D

      @dalamenona We had the same error with Prometheus.
      The following opened FusionAuth issue contains information about the topic

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

      Best regards.

    • danD

      Solved Claims to check when using google as an idp for google workspace

      Q&A
      • google idp workspace • • dan
      3
      0
      Votes
      3
      Posts
      1.1k
      Views

      M

      @dan said in Claims to check when using google as an idp for google workspace:

      You should start by checking the relevant google documentation.

      As of writing, this is what their doc says:

      Using the email, email_verified and hd fields, you can determine if Google hosts and is authoritative for an email address. In the cases where Google is authoritative, the user is known to be the legitimate account owner, and you may skip password or other challenge methods.

      Cases where Google is authoritative:

      email has a @gmail.com suffix, this is a Gmail account. email_verified is true and hd is set, this is a Google Workspace account.

      Users may register for Google Accounts without using Gmail or Google Workspace. When email does not contain a @gmail.com suffix and hd is absent, Google is not authoritative and password or other challenge methods are recommended to verify the user. email_verified can also be true as Google initially verified the user when the Google account was created, however ownership of the third party email account may have since changed.

      So in this case, you want to check that hd is set as well as that email_verified is true.

      With FusionAuth, you can check this using a reconcile lambda and looking at the id_token:

      https://fusionauth.io/docs/extend/code/lambdas/google-reconcile https://fusionauth.io/docs/extend/code/lambdas/openid-connect-response-reconcile

      Thank you from bringing this to light.

    • J

      Solved retrieve_user_using_jwt is not working with FA 1.62.1

      Q&A
      • • • johnmiller
      3
      0
      Votes
      3
      Posts
      645
      Views

      mark.robustelliM

      @johnmiller It looks like the issue is that the 'retrieve a user via JWT' functionality was removed in 1.60.0. (It appears the User API JWT authentication method was deprecated in version 1.50.0. An issue has been filed to remove it from the client libraries.

      Thank you from bringing this to light.