<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Recently Active Topics]]></title><description><![CDATA[A list of topics that have been active within the past 24 hours]]></description><link>https://fusionauth.io/community/forum/recent</link><generator>RSS for Node</generator><lastBuildDate>Tue, 17 Mar 2026 06:09:05 GMT</lastBuildDate><atom:link href="https://fusionauth.io/community/forum/recent.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 11 Mar 2026 17:20:38 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Importing users over time]]></title><description><![CDATA[<p dir="auto">I think the way I'd approach this is:</p>

import all users into FusionAuth

<p dir="auto">At cutover time:</p>

look at local database to see which password hashes had changed
pull the user data from FusionAuth for each of these users
delete the user
re-import the user with the new password hash and the FusionAuth data, maintaining the same userId (if you provide the UUID, we'll use that)

<p dir="auto">I get that is an additional complexity, but hopefully that helps.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3100/importing-users-over-time</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3100/importing-users-over-time</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Wed, 11 Mar 2026 17:20:38 GMT</pubDate></item><item><title><![CDATA[The request origin could not be verified. Unable to complete this login request with same-instance cross-tenant IdP federation]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/2507">@mark-robustelli</a> thanks Mark.</p>
<p dir="auto">All domains will be sub-domains of the main domain name, but for this staging system, we are using <a href="http://2026.domain.com" rel="nofollow ugc">2026.domain.com</a> and <a href="http://2026-tenant1.domain.com" rel="nofollow ugc">2026-tenant1.domain.com</a>, 2026-tenant2 etc.</p>
<p dir="auto">Logins work successfully without the idphint on a per tenant basis but we want all tenants to use the common master tenant (via SSO) as the login, because many users will be members across multiple tenants and their data can be common across tenants.</p>
<p dir="auto">The auth server uses <a href="http://auth.domain.com" rel="nofollow ugc">auth.domain.com</a></p>
<p dir="auto">We have the master tenant and sub tenants in FusionAuth. We have the master application and sub-tenant applications for each tenant.<br />
A tenant application has an authorized redirect like <a href="http://2026-tenant1.domain.com/callback" rel="nofollow ugc">2026-tenant1.domain.com/callback</a> and currently no request origin (I have tried adding this for sub-tenant and master tenant together). I've tried adding the sub-tenants as authorized origins on the master tenant.</p>
<p dir="auto">There's nothing extra configured on the FusionAuth tenants.</p>
<p dir="auto">Under settings, Identity Providers, we have an OIDC provider pointing back to the master app in the master tenant. We do see the button to login with master tenant on a sub-tenant (if no idphint is set).</p>
<p dir="auto">All sub-tenant applications are enabled for this provider (with create reg), I also have the sub-tenants added in this IP and have tried without. Managed domains is blank. Not using the POST method.</p>
<p dir="auto">Auth endpoints have been manually set (because FusionAuth couldn't self-discover?!) like so:<br />
<a href="https://auth.domain.com/oauth2/authorize" rel="nofollow ugc">https://auth.domain.com/oauth2/authorize</a>,<br />
<a href="https://auth.domain.com/oauth2/token" rel="nofollow ugc">https://auth.domain.com/oauth2/token</a>,<br />
<a href="https://auth.domain.com/oauth2/userinfo" rel="nofollow ugc">https://auth.domain.com/oauth2/userinfo</a></p>
<p dir="auto">There's no groups configured.</p>
<p dir="auto">Hosting wise, FusionAuth is a Docker container on the same server with the main app and sub-tenants behind a Traefik 2 proxy which is also behind Cloudflare and each site has its own LetsEncrypt SSL cert via Traefik.</p>
<p dir="auto">Direct login to the master tenant is successful but not via a sub-tenant.</p>
<p dir="auto">Grok suggests it's a CORS issue. My filter was not enabled. I also tried enabled (current) and allowed all methods with (and without) wildcard origins.</p>
<p dir="auto">As mentioned, the login is recorded on FusionAuth, it just seems to fail on the callback process via master..</p>
<p dir="auto">The master login URL when called via a sub-tenant shows the master tenant as the callback URL. I've tried adding the sub-tenant callback as authorised in the master tenant.</p>
<p dir="auto">I think that's everything..</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3099/the-request-origin-could-not-be-verified-unable-to-complete-this-login-request-with-same-instance-cross-tenant-idp-federation</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3099/the-request-origin-could-not-be-verified-unable-to-complete-this-login-request-with-same-instance-cross-tenant-idp-federation</guid><dc:creator><![CDATA[hvfa]]></dc:creator><pubDate>Mon, 09 Mar 2026 12:30:42 GMT</pubDate></item><item><title><![CDATA[Wanted to add a passkey prompt in my application]]></title><description><![CDATA[<p dir="auto">This is totally possible.</p>
<p dir="auto">You want to start by understanding <a href="https://fusionauth.io/docs/lifecycle/authenticate-users/passwordless/webauthn-passkeys" rel="nofollow ugc">FusionAuth passkey setup and the normal flow</a>.</p>
<p dir="auto">Then, in your application, probably using one of the <a href="https://fusionauth.io/docs/sdks/" rel="nofollow ugc">client libraries</a>, you want to do the following for a user:</p>

see if a user has a passkey set up, using the <a href="https://fusionauth.io/docs/apis/webauthn#retrieve-a-passkey" rel="nofollow ugc">"retrieve a passkey" API</a>. If this returns 0 passkeys, show the prompt.
for the prompt, you have two options:

use the <a href="https://fusionauth.io/docs/lifecycle/authenticate-users/passwordless/webauthn-passkeys#registration-2" rel="nofollow ugc">API/client library</a> to start the passkey registration process from within your application directly
send them to the <a href="https://fusionauth.io/docs/lifecycle/manage-users/account-management/add-webauthn#add-a-passkey-from-account-management-user-facing" rel="nofollow ugc">user management page to add a passkey</a> (requires a paid license)



<p dir="auto">The right way to do the latter depends on your application needs (are you okay with a redirect) and whether or not you have at least a starter license.</p>
<p dir="auto">For reporting on the number of users that have set up passkeys, unfortunately you have to query all your users and then pull the passkey data individually. There's no way to use the elasticsearch syntax to do the query as of yet. <a href="https://github.com/FusionAuth/fusionauth-issues/issues/3104" rel="nofollow ugc">There's an open github issue to add that functionality.</a></p>
]]></description><link>https://fusionauth.io/community/forum/topic/3098/wanted-to-add-a-passkey-prompt-in-my-application</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3098/wanted-to-add-a-passkey-prompt-in-my-application</guid><dc:creator><![CDATA[dan]]></dc:creator><pubDate>Wed, 04 Mar 2026 00:19:00 GMT</pubDate></item><item><title><![CDATA[Struggling to backup selfhosted fusionAuth.]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/341">@ralph</a> Thanks for following up and sharing!</p>
]]></description><link>https://fusionauth.io/community/forum/topic/2859/struggling-to-backup-selfhosted-fusionauth</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/2859/struggling-to-backup-selfhosted-fusionauth</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Mon, 23 Feb 2026 14:11:19 GMT</pubDate></item><item><title><![CDATA[SAML authnRequest exception]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/1129">@james-hudson</a> You may want to check out this <a href="https://fusionauth.io/blog/test-saml-configuration" rel="nofollow ugc">blog</a> post. Hopefully that can help.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3097/saml-authnrequest-exception</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3097/saml-authnrequest-exception</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Fri, 20 Feb 2026 15:36:40 GMT</pubDate></item><item><title><![CDATA[Weird behavior for OpenID connect login after 1.62 upgrade - MS prompts to verify email]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/737">@scottw</a> Hopefully, I can get a little time over the next couple of days and see if I can duplicate it. I will let you know if I find anything.  Anyone else seeing his behavior?</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3096/weird-behavior-for-openid-connect-login-after-1-62-upgrade-ms-prompts-to-verify-email</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3096/weird-behavior-for-openid-connect-login-after-1-62-upgrade-ms-prompts-to-verify-email</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Wed, 18 Feb 2026 17:48:31 GMT</pubDate></item><item><title><![CDATA[Twillio Messenger]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3769">@rgros</a> Do you have Debug enabled?</p>
<p dir="auto">Screenshot 2026-02-18 at 10.43.14 AM.png</p>
<p dir="auto">Then you should check your Event Log.</p>
<p dir="auto">Screenshot 2026-02-18 at 10.44.20 AM.png</p>
<p dir="auto">Let us know what you find.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3095/twillio-messenger</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3095/twillio-messenger</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Wed, 18 Feb 2026 17:46:06 GMT</pubDate></item><item><title><![CDATA[Admin UI actions over themes blocks application since 1.61.2]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3748">@david-cuen</a> Thanks for your patience and dedication to seeing this through. It would help a ton if you could find something reproducible. Let me know what you find and I can continue to try it on this end.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3092/admin-ui-actions-over-themes-blocks-application-since-1-61-2</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3092/admin-ui-actions-over-themes-blocks-application-since-1-61-2</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Thu, 12 Feb 2026 16:22:26 GMT</pubDate></item><item><title><![CDATA[&quot;A request to the search index has failed&quot; - OpenSearch(AWS)]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3759">@tim-clark</a> Can you please point to the community discussion where this comes up? I could not find it in the <a href="https://github.com/FusionAuth/fusionauth-issues" rel="nofollow ugc">issues</a>.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3094/a-request-to-the-search-index-has-failed-opensearch-aws</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3094/a-request-to-the-search-index-has-failed-opensearch-aws</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Fri, 06 Feb 2026 17:23:33 GMT</pubDate></item><item><title><![CDATA[FusionAuth Cloud requests timing out continuously (admin UI + auth flows)]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3755">@hemanth18pages</a> raising the support ticket is the way to go for sure. It will be good to know if anyone else is experiencing this too.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3093/fusionauth-cloud-requests-timing-out-continuously-admin-ui-auth-flows</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3093/fusionauth-cloud-requests-timing-out-continuously-admin-ui-auth-flows</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Mon, 02 Feb 2026 15:05:39 GMT</pubDate></item><item><title><![CDATA[can&#x27;t use fusion auth react sdk when fusion auth server runs locally on fusionauth.localhost:]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3750">@bernardo-munz</a> Did you play with the SameSite setting?</p>
]]></description><link>https://fusionauth.io/community/forum/topic/2888/can-t-use-fusion-auth-react-sdk-when-fusion-auth-server-runs-locally-on-fusionauth-localhost</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/2888/can-t-use-fusion-auth-react-sdk-when-fusion-auth-server-runs-locally-on-fusionauth-localhost</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Wed, 28 Jan 2026 23:26:31 GMT</pubDate></item><item><title><![CDATA[Error getting list application due to sql error (mysql)]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/20">@dan</a> said in <a href="/community/forum/post/7048">Error getting list application due to sql error (mysql)</a>:</p>
<blockquote>
<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/2854">@traperwaze</a> said in <a href="/community/forum/post/7044">Error getting list application due to sql error (mysql)</a>:</p>
<blockquote>
<p dir="auto">MariaDB server</p>
</blockquote>
<p dir="auto">I believe the issues is that we don't support MariaDB.</p>
<p dir="auto">This is a known issue: <a href="https://github.com/FusionAuth/fusionauth-issues/issues/367" rel="nofollow ugc">https://github.com/FusionAuth/fusionauth-issues/issues/367</a> <a href="https://poki.pw/" rel="nofollow ugc">poki</a></p>
<p dir="auto">Do you see the same issue with a <a href="https://fusionauth.io/docs/get-started/download-and-install/system-requirements#database" rel="nofollow ugc">supported version of MySQL or PostgreSQL</a>?</p>
</blockquote>
<p dir="auto">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 (-&gt;&gt;) used in that query isn’t supported the same way in MariaDB, which would explain the syntax error.</p>
<p dir="auto">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.</p>
<p dir="auto">Appreciate you pointing us to the GitHub issue — that helps clarify things a lot.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/2617/error-getting-list-application-due-to-sql-error-mysql</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/2617/error-getting-list-application-due-to-sql-error-mysql</guid><dc:creator><![CDATA[rossomaciato]]></dc:creator><pubDate>Wed, 28 Jan 2026 16:12:41 GMT</pubDate></item><item><title><![CDATA[Prometheus is dropping samples with duplicate timestamps]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3709">@dalamenona</a> We had the same error with Prometheus.<br />
The following opened FusionAuth issue contains information about the topic</p>
<p dir="auto"><a href="https://github.com/FusionAuth/fusionauth-issues/issues/3082" rel="nofollow ugc">https://github.com/FusionAuth/fusionauth-issues/issues/3082</a></p>
<p dir="auto">Best regards.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3079/prometheus-is-dropping-samples-with-duplicate-timestamps</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3079/prometheus-is-dropping-samples-with-duplicate-timestamps</guid><dc:creator><![CDATA[david.cuen]]></dc:creator><pubDate>Thu, 22 Jan 2026 15:52:25 GMT</pubDate></item><item><title><![CDATA[oauthConfiguration.clientSecret is missing on &#x2F;api&#x2F;application&#x2F;search response since 1.62.0]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3746">@simon-chrzanowski</a> can you please share the code you using?  (please be sure to hide anything sensitive like your API Key)</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3091/oauthconfiguration-clientsecret-is-missing-on-api-application-search-response-since-1-62-0</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3091/oauthconfiguration-clientsecret-is-missing-on-api-application-search-response-since-1-62-0</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Tue, 20 Jan 2026 15:13:02 GMT</pubDate></item><item><title><![CDATA[Claims to check when using google as an idp for google workspace]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/20">@dan</a> said in <a href="/community/forum/post/8425">Claims to check when using google as an idp for google workspace</a>:</p>
<blockquote>
<p dir="auto">You should start by checking the <a href="https://developers.google.com/identity/openid-connect/openid-connect" rel="nofollow ugc">relevant google documentation</a>.</p>
<p dir="auto">As of writing, this is what their doc says:</p>
<blockquote>
<p dir="auto">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.</p>
<p dir="auto">Cases where Google is authoritative:</p>
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.

<p dir="auto">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.</p>
</blockquote>
<p dir="auto">So in this case, you want to check that hd is set as well as that email_verified is true.</p>
<p dir="auto">With FusionAuth, you can check this using a reconcile lambda and looking at the id_token:</p>

<a href="https://fusionauth.io/docs/extend/code/lambdas/google-reconcile" rel="nofollow ugc">https://fusionauth.io/docs/extend/code/lambdas/google-reconcile</a>
<a href="https://fusionauth.io/docs/extend/code/lambdas/openid-connect-response-reconcile" rel="nofollow ugc">https://fusionauth.io/docs/extend/code/lambdas/openid-connect-response-reconcile</a>

</blockquote>
<p dir="auto">Thank you from bringing this to light.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3074/claims-to-check-when-using-google-as-an-idp-for-google-workspace</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3074/claims-to-check-when-using-google-as-an-idp-for-google-workspace</guid><dc:creator><![CDATA[mariacharles0911]]></dc:creator><pubDate>Mon, 19 Jan 2026 03:34:33 GMT</pubDate></item><item><title><![CDATA[Pass value from API to webhook]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3738">@alexandros-nafas</a> , were you able to figure it out?</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3090/pass-value-from-api-to-webhook</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3090/pass-value-from-api-to-webhook</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Thu, 15 Jan 2026 18:08:00 GMT</pubDate></item><item><title><![CDATA[retrieve_user_using_jwt is not working with FA 1.62.1]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/426">@johnmiller</a> It looks like the issue is that the 'retrieve a user via JWT' functionality was removed in <a href="https://fusionauth.io/docs/release-notes/#version-1-60-0" rel="nofollow ugc">1.60.0</a>. (It appears the User API JWT authentication method was deprecated in version 1.50.0. An <a href="https://github.com/FusionAuth/fusionauth-issues/issues/3292" rel="nofollow ugc">issue</a> has been filed to remove it from the client libraries.</p>
<p dir="auto">Thank you from bringing this to light.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3087/retrieve_user_using_jwt-is-not-working-with-fa-1-62-1</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3087/retrieve_user_using_jwt-is-not-working-with-fa-1-62-1</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Tue, 06 Jan 2026 15:28:53 GMT</pubDate></item><item><title><![CDATA[How can I configure session timeout on the admin panel?]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/2507">@mark-robustelli</a> Thanks, I think that's resolved it!</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3075/how-can-i-configure-session-timeout-on-the-admin-panel</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3075/how-can-i-configure-session-timeout-on-the-admin-panel</guid><dc:creator><![CDATA[rachel.flatt]]></dc:creator><pubDate>Tue, 06 Jan 2026 11:42:00 GMT</pubDate></item><item><title><![CDATA[Style problems in admin panel on user page after update to 1.62.0]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3731">@Ruka</a> , this seems like something that should be reported as an <a href="https://github.com/fusionauth/fusionauth-issues/issues" rel="nofollow ugc">issue</a>.</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3088/style-problems-in-admin-panel-on-user-page-after-update-to-1-62-0</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3088/style-problems-in-admin-panel-on-user-page-after-update-to-1-62-0</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Fri, 02 Jan 2026 16:36:36 GMT</pubDate></item><item><title><![CDATA[Error Users]]></title><description><![CDATA[<p dir="auto"><a class="mention plugin-mentions-user plugin-mentions-a" href="https://fusionauth.io/community/forum/uid/3723">@patrick_ag</a>  Is this just when you are loading the page or are you trying to take some action?</p>
]]></description><link>https://fusionauth.io/community/forum/topic/3089/error-users</link><guid isPermaLink="true">https://fusionauth.io/community/forum/topic/3089/error-users</guid><dc:creator><![CDATA[mark.robustelli]]></dc:creator><pubDate>Fri, 02 Jan 2026 16:33:19 GMT</pubDate></item></channel></rss>