Khaled Musaied
Khaled Musaied

Reputation: 2493

How to use Microsoft Account in an openID site?

I am planning to build a site with openID authentication , most of my target users will register in the site using Microsoft accounts (hotmail/live/windowslive).

Is there anyway to use Microsoft accounts as openID?

Upvotes: 15

Views: 9297

Answers (3)

saille
saille

Reputation: 9191

As of Feb 2016, OpenID Connect is supported by Microsoft Accounts (aka Windows Live ID, aka Microsoft Passport), without needing an Azure account.

Please read this: https://blogs.technet.microsoft.com/enterprisemobility/2016/02/23/for-developers-the-first-use-cases-of-the-converged-microsoft-account-and-azure-active-directory-programming-model-are-now-ga/

Upvotes: 0

Talljoe
Talljoe

Reputation: 14827

Until Microsoft supports OpenID my current plan is to hide OpenID and Windows Live ID behind a "Third Party Auth" interface. Using the Chain of Responsibility pattern I'll choose the correct provider and the rest of the app won't know the difference (except the UI where I'll have friendly buttons, much like the ones for Gmail and Yahoo accounts).

Upvotes: 2

Wade
Wade

Reputation: 512

As far as i know they still only use their "Passport"/"Windows Live ID" system, so no. They have announced however that they are going to support OpenID at one point or another. Take a look at the link below there is even a Tech Preview to test out their implementation maybe that can be used somehow:

Microsoft & OpenID

Upvotes: 8

Related Questions