How do we detect if a user has ever visited a particular client
Out-of-the-box and depending on the type of use-case and client flow used you could either:
- Enable the admin events, in particular the
Event Type : LOGIN
and then query those events for the clientID and id of the user; - If the client in question is using either
Browser Flow
orDirect Grant Flow
then you can (under theAuthentication
tab) copy and create your own version of one of the flows accordingly. Then add a sub-flow that forces the user to perform an action only during the first login (e.g., accept the 'Terms and Conditions'). Afterwards, underAuthentication Flow Overrides
(of the client) override the flow with your customized flow, accordingly. Finally, query the user for the first login action required by the client in question.
DISCLAIMER: I am not claiming that those are either the best solutions for this use case or that they are bulletproof.