windows-live-id

Windows Live Id Authentication for Windows Phone 7

徘徊边缘 提交于 2020-01-11 06:25:10
问题 I'm developing a Windows Phone 7 app but don't want to re-implement my own identity / authentication service - espcially when we know the user will be signed in with a Windows Live account. But, I understand from this thread that Microsoft will not be granting access to the logged in users details. Really? Is there a way to get this information from the Windows Live Id Service? Are there any api's that work on the device? Thanks, 回答1: It's true that the Windows Live ID will not be available

Are any other claims available from Windows Live ID via the ACS 2.0 identity provider?

允我心安 提交于 2020-01-03 11:38:29
问题 I understand that currently the default Windows Live ID identity provider in ACS 2.0, only provides two claims the nameidentifier (a base64 unique id associated with the user and your application, but useless for describing someone) and the identityprovider claim which lets you know that your talking with LiveID. I was wondering is it possible to configure an alternative identity provider for Window Live ID that could provide Name and other Live ID profile information via additional claims.

Are any other claims available from Windows Live ID via the ACS 2.0 identity provider?

依然范特西╮ 提交于 2020-01-03 11:38:04
问题 I understand that currently the default Windows Live ID identity provider in ACS 2.0, only provides two claims the nameidentifier (a base64 unique id associated with the user and your application, but useless for describing someone) and the identityprovider claim which lets you know that your talking with LiveID. I was wondering is it possible to configure an alternative identity provider for Window Live ID that could provide Name and other Live ID profile information via additional claims.

Retrieving user profile on messenger(windows live) connect sdk within php

谁说我不能喝 提交于 2020-01-03 05:21:07
问题 I am using this example to successfuly make a login connection on windows live platform: http://code.msdn.microsoft.com/messengerconnect (the oauth handler callback one) I receive a token and a user id from their api, but I can't seem to understand how to fetch the user profile from these info. Does anyone know how to do this? There are examples in MS website, but they are all C# or javascript ones and I have to do it in PHP. After retrieving the token and the cid I tried this, but returns me

Windows Live ID in ASP.NET MVC

放肆的年华 提交于 2019-12-30 06:43:12
问题 does anyone know is there a way to implement Windows Live ID authentication into your ASP.NET MVC site. There is some info about OpenID implementations and it uses some libraries. So is there a way to implement Live ID or it is not yet supported. Thank you 回答1: The same way you would with Memberships: http://www.eggheadcafe.com/tutorials/aspnet/48857836-0c72-4efb-9d29-fbcb8e17ef3a/integrate-windows-live-id.aspx 回答2: Actually this is a valid business case, and I've gotten it to work with asp

Windows Live SDK doesn't LogOut()

自作多情 提交于 2019-12-22 10:55:51
问题 Microsoft Live ID is now called Microsoft Account. Having said that, let's say I log into Windows 8 as sam@email.com and run an app. That app uses the Live SDK to access my Microsoft Account profile. Before it can do so, however, I must give it explicit permission and log in. So far, perfect. Though I gave the app permission to sam@email.com I want to change it to janet@email.com so I click the app's Logout button which queries LiveAuthClient.CanLogout() from the SDK. Confusingly, the SDK

How should I handle user identity for a Window Phone / WCF / ASP.NET MVC application?

你。 提交于 2019-12-20 10:38:03
问题 I'm working on an application which allows data entry and display from both a Windows Phone application and an MVC 3 web interface. Data access for the phone client is via authenticated WCF services hosted in the MVC 3 application. Users will be tracking information which is unique to them, so the service will only show me data which I have entered. What is the simplest way to handle identity in this scenario? I'd thought of using Windows Live ID, since the phone application has access to a

run powershell command using csv as input

帅比萌擦擦* 提交于 2019-12-20 09:39:47
问题 I have a csv that looks like Name, email, address Name, email, address Name, email, address I am wanting to run New-Mailbox -Name "*Name*" -WindowsLiveID *email* -ImportLiveId (where *x* is replaced by the value from the csv). on each line in the csv file. How can I do this? 回答1: $csv = Import-Csv c:\path\to\your.csv foreach ($line in $csv) { New-Mailbox -Name $line.Name -WindowsLiveID $line.Email -ImportLiveId } First line of csv has to be something like Name,Email,Address If you cannot have

Messenger connect desktop API for Windows Phone 7

核能气质少年 提交于 2019-12-11 22:09:38
问题 Is there Messenger Connect API for Windows Phone 7 to use in Silverlight phone application to allow user authentication with windows live id and get a user consent to share profile data with my app? It all works great for PC desktop app or ASP.Net. I want the same experience for my users with the phone: login using windows live id and access the same data they can access on their desktop through a web site or desktop app. The backend is, obviously, multi-tenant, one database, many app users -

Windows Live ID Single-Sign-On on Windows Phone 7

大憨熊 提交于 2019-12-10 20:55:43
问题 Is there any way to implement Single-Sign-On with Windows Live Id (hotmail account) in Windows Phone? 回答1: I saw a talk at PDC about this - some details are here - http://oakleafmobile.blogspot.com/2010/11/sample-code-for-vittorio-bertoccis-wp7.html 回答2: Yes, there're a couple of options. A complete description is here: http://blogs.msdn.com/b/eugeniop/archive/2011/03/24/authentication-in-wp7-client-with-rest-services-part-i.aspx (Which uses a similar approach as described in the ACS sample)