I'm lost. I'm developing a Windows Phone 7 app and I want to do the following:

I want to use Facebook, Live ID, Google and Yahoo to let user sign in my app. And also, it they don't have any of those account I will need to implement a sign up interface on Windows Azure.

I also need to store some ID from user signed in my app. For example, Facebook returns an ID for that user. But Google, Live ID and Yahoo! returns another ID. I will store this on a user table with these columns:

ID | Sing-IN-Type | ID-returned

ID: Primarty Key.

Sing-IN-Type: Foreign key to a table with Facebook, Google, etc. names.

ID-returned: ID returned by those webs.

I've read about ACS v2 and I'm not sure it will fit with my requisites. What do you think?

link|improve this question

feedback

2 Answers

The ACS team has posted a sample that demonstrates how to implement federated auth in a phone app using the silverlight browser control:

http://acs.codeplex.com/wikipage?title=ACS%20Windows%20Phone%20Sample&referringTitle=Samples

The sample doesn't parse the token to extract the claims you're after, but it wouldn't take much code to do it.

After logging in, the application caches the token returned from ACS in a RequestSecurityTresponseStore, which is a member of the MainPage. There are Simple Web Token (SWT) handlers included in the DPE.OAuth project that you can make use of. In the context of MainPage.xaml.cs, the code would look like this:

SimpleWebToken swt = (SimpleWebToken)SimpleWebTokenHandler.GetTokenFromString( _rstrStore.SecurityToken );

You should then find the IdentityProvider (sign in type) and NameIdentifier (user ID) claims that ACS issued inside the swt.Parameters.

If you want to host your own custom sign in page in this scenario, ACS provides functionality for that as well:

http://msdn.microsoft.com/en-us/library/gg185963.aspx

link|improve this answer
feedback

You could also look at the hands on labs from the identity framework.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.