<?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[Browsers being used by tenant users]]></title><description><![CDATA[<p dir="auto">Is there a way to check what browsers are being used by our tenant users? We want to see XYZ tenant, how many users are using E.G Chrome, Safari, ...</p>
]]></description><link>https://fusionauth.io/community/forum/topic/2625/browsers-being-used-by-tenant-users</link><generator>RSS for Node</generator><lastBuildDate>Sun, 17 May 2026 21:18:24 GMT</lastBuildDate><atom:link href="https://fusionauth.io/community/forum/topic/2625.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 21 Feb 2024 17:28:27 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Browsers being used by tenant users on Thu, 22 Feb 2024 19:21:11 GMT]]></title><description><![CDATA[<p dir="auto">Thanks for the question.</p>
<p dir="auto">FusionAuth allows you to <a href="https://fusionauth.io/docs/v1/tech/themes/" rel="nofollow ugc">create a custom theme</a>.  In this custom theme, you can add JavaScript (JS) that might offer you the analytics you are looking for.  For instance, you could add <a href="https://marketingplatform.google.com/about/analytics/" rel="nofollow ugc">Google Analytics</a> or a similar JS engine to collect this metadata information.</p>
<p dir="auto">Another option is that you can use webhooks to listen for <a href="https://fusionauth.io/docs/v1/tech/events-webhooks/events/user-login-success" rel="nofollow ugc">login events</a> (or related events).  Most webhook events will include a field of:</p>
<pre><code>event.info.userAgent [String] AVAILABLE SINCE 1.30.0
The user agent associated with the event.
</code></pre>
<p dir="auto">Which might return data like</p>
<pre><code>"userAgent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36"
</code></pre>
<p dir="auto">You could collect and analyze this data to get a better understanding of how your users are interacting with FusionAuth.</p>
<p dir="auto">Lastly, we do store some metadata on the refresh tokens (if you use our hosted login pages), which might be helpful for information-gathering purposes by Tenant.</p>
<pre><code>"metaData": {
        "device": {
          "description": "Hooli Phone 8GB Work Phone",
          "lastAccessedAddress": "170.152.81.62",
          "lastAccessedInstant": 1487996477628,
          "name": "Richard's Hooli Phone",
          "type": "MOBILE"
        },
</code></pre>
<p dir="auto"><a href="https://fusionauth.io/docs/v1/tech/apis/jwt#retrieve-refresh-tokens" rel="nofollow ugc">https://fusionauth.io/docs/v1/tech/apis/jwt#retrieve-refresh-tokens</a></p>
<p dir="auto">Let us know if we can provide you with anything else.</p>
]]></description><link>https://fusionauth.io/community/forum/post/7075</link><guid isPermaLink="true">https://fusionauth.io/community/forum/post/7075</guid><dc:creator><![CDATA[mike.rudat]]></dc:creator><pubDate>Thu, 22 Feb 2024 19:21:11 GMT</pubDate></item></channel></rss>