How can I know how many of my users are using different login methods?
-
I have multiple identity providers enabled for FusionAuth (Facebook, Google, etc).
How can I know how many users are using each of these, vs a username and password?
-
As of right now, you can grab all your users via this script:
And then run this script to give you stats on the links each user has:
https://github.com/FusionAuth/fusionauth-example-scripts/blob/master/full-user-search/ssostats.sh
You may need to edit the latter script if you want to get insight into different identity providers. Look up each identity provide Id via the API or admin UI and update the
if
clauses to increment the appropriate variable. -