Hi everyone,
My questions involves a publicly deployed app (via heroku) with individual user logins. I want to keep track of exactly when (and preferably where but not as important) each user is logging in. And then have a way to access this information.
I found the best way to do so in a pinch as to log into Gmail API, and send myself an email saying “Person A just logged in”. I would continue to do so, but it has become more and more frequent that Google flags these logins for security reasons and my whole app gets bugged out because it won’t log in.
I would really prefer a way to keep track of who is logging in and when without having to send myself emails. Is there a way to do this that can circumvent the whole process of having to login to my email and possibly (likely) bug the whole app?
Thank you.