I have an app that runs over multiple Windows 8 devices, such as phones and tablets. I need a fluent (not necessarily secure) way of identifying users across apps. For Windows Phone 8, ANID2 is an option. For Windows 8, I used a hardware token from HardwareIdentification previously, but this doesn't necessarily identify the user if there are multiple users on the same machine.
Live authentication is not an option for me and I want to be able to identify the same user in two apps. Is there any way around this or am I forced to create my own account management system ?
If you don't want to use any third party service. To identify users you've to mark them first i.e. you've to assign an
idto each user (maybe aguid) and store it in client side. When you want to know the user you just have to send thisid. The exact same thing (nearly) is done when you store acookiein browser.But if you really want to use a simple solution I'd suggest Amazon Cognito