Single login usage

Hi channel,

How can I limit user login to one or a limited number of connections, like subscription platforms?

Hi @fatisamine

This is a somewhat challenging issue. There are a few ways to do it, but none are very elegant.
Perhaps the best is to write your own session management API - and when a user logs in make a call to that API to update the info. Then check with the session API before critical operations to make sure the user hasn’t logged in elsewhere.

Or you can sort of keep track of this via rules and metadata, but that is not completely foolproof.

John

Hi @john.gateley

Yes, I want to do it with auth0 rule, but I don’t know what attributes I must to check it