Sushant Bhatnagar
Sushant Bhatnagar

Reputation: 3784

How to integrate facebook account with asp.net web site?

Hi I have integrated Facebook with asp.net web site through open id But now it is not working . I think Facebook change process of authentication.

So there is any way to integrate Facebook account with asp.net web site . Please suggest me usable link or samples.

Upvotes: 1

Views: 906

Answers (3)

Tom Lianza
Tom Lianza

Reputation: 4072

I highly recommend the Facebook C# sdk which provides support for the full breadth of the API and is frequently updated. It also has quite a good bit of documentation (which I won't re-print here, since it would be specific to the library and if the link moved or the library went away, wouldn't have any value)

If all you want to integrate is auth, I would still recommend using the library if for no other reason an it handles the signing part for you, and gives you room to do more in the future.

Upvotes: 1

Ali Nouman
Ali Nouman

Reputation: 3412

Try this Gigya they provide free services through you can put social authentication to your website. But in free service their little backlink comes but for premium users there is no backlink.

Upvotes: 0

Paul
Paul

Reputation: 36349

Facebook doesn't use OpenID, they use OAuth 2.

Oldish, but I think still accurate for Asp.Net http://osnapz.wordpress.com/2010/04/23/using-asp-net-with-facebooks-graph-api-and-oauth-2-0-authentication/

Here's another for MVC3 http://www.codeproject.com/KB/aspnet/net_mvc_facebook_oauth.aspx

Upvotes: 0

Related Questions