I now have support for Facebook logins in my ASP.NET MVC application. A client on the server once authenticates my application, my JS code gets an access token and all the user actions performed via this account are recored with his facebook id.
Now I need to add twitter sign-in support, and I am wondering wherther I should develop a custom logic to:
Separate data that comes from clients authenticated with FB and Twitter (like IDSource field in the user actions data (I store all the user actions with the "actioner-id" to keep track of who does what)?
Keep track of users signing off and in to "merge" the user if the same authenticates via facebook or twitter (I have voting functionality so I don't want to allow same person to vote by different Social Network profiles, so I will need to also keep cookie that will tell me when I need to merge.
Or is there a unified mechanism that can present me with a unique user ID no matter if he has logged in with Twitter or FB?