Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

ASP.NET membership gives you a built-in way to validate and store user credentials.

learn more… | top users | synonyms (1)

0
votes
0answers
348 views

Facebook Login with Asp.net membership integration, auth.authResponseChange

I'm subscribing to the auth.authResponseChange event to log in with facebook. But can't differentiate between 1 - when a user clicks the 'Login with Facebook' button, and 2 - when they hit the ...
2
votes
1answer
185 views

How can I get the user's email returned to my asp.net web forms app from Facebook OAuth login?

I have a web forms app (VS2012) that is using the template OpenAuth code to allow users to login via Facebook. It is a requirement of the ASP.Net Membership registration for my site that an email ...
0
votes
2answers
1k views

How to get ExtendedMembershipProvider to work with ASP.NET MVC 4 and Custom Membership Provider?

I have got a custom membership provider to work with ASP.NET MVC 4 but when i whant to use the OAuth logins like Facebook etc I'm getting an error: To call this method, the "Membership.Provider" ...
0
votes
0answers
10 views

facebook connect integration with asp.net membership [duplicate]

Possible Duplicate: Facebook connect with asp.net membership I am implementing Facebook connect to ASP.NET website. I already have the built in ASP membership provider, and want to add ...
0
votes
2answers
332 views

Is this a good approach to mix FB Connect and ASP Membership?

I like to work with asp membership and I need FB integration on a site so I wan't to mix them. Here's what I plan to do: 1) Implement method that get data from user FB account (firstname, lastname, ...
0
votes
0answers
311 views

Custom Membership provider with OpenId, Facebook and Twitter Connect

I'm using ASP.NET MVC3, and I want to implement a simple authentication system with the following : A custom user table OpenId connection Facebook Connect Twitter OAuth I found these open source ...
1
vote
1answer
107 views

Replacing MVC's built in User objects with Facebook Connect

I have an ASP.NET MVC 3 project where I have NO local user management. I have intergratred Facebook Connect successfully. While this works, it makes my Controllers and Views messy and verbose. I'd ...
0
votes
1answer
247 views

Authenticate using asp.net membership and facebook

I am working on allowing users to log into my site using either facebook or the standard asp.net membership. I am using the c# facebook sdk. The first time the user logs into the site using facebook ...
0
votes
0answers
275 views

using the Facebook Graph APIs (preferably thru the Facebook C# SDK) to authenticate users and integrate it with ASP.NET Membership Providers

Our site uses ASP.NET Membership Providers for Authentication. We would like to integrate Facebook Authentication using the newer Graph API's into the existing ASP.NET Membership Providers preferably ...
2
votes
2answers
3k views

Integration of Facebook and asp.net membership

I want to allow users to sign up to my website using Facebook. I already use the JS SDK on the client side for authentication and authorization and the C# sdk on the server side to get all the ...
3
votes
1answer
351 views

Facebook C# MVC MVC3 store token alongside asp.net membership scenario

Hi does someone have a link or can offer some guidance on HOW the facebook C# SDK could be used to provide access credentials to facebook along side ASP.Net membership? Basically what i would like to ...
16
votes
4answers
10k views

Integrating Facebook Authentication with existing ASP.NET Membership

Coding Platform: ASP.NET 4.0 WebForms with C# We have a website with the existing login details managed by ASP.NET Membership Provider. Now client wants to add Facebook Connect to it. So on ...
0
votes
1answer
667 views

Integrate a facebook c# sdk login system into an existing login system based on Microsoft Membership Api

I'm trying to figure out how should I integrate facebook login system in my existing application through facebook c# sdk. I have a web forms application and I'm authenticating users by standard Login ...
11
votes
3answers
3k views

Available Membership Starter Kits / Membership NuGet Packages for ASP.NET MVC3?

I'm looking for a Membership starter kit / NuGet package for MVC3 to handle things like user management as well as Facebook Authentication and Twitter Authentication. The Microsoft.Web.Helpers seems ...
1
vote
1answer
369 views

Facebook with Membership Provider?

I am using Facebook connect for my project with custom written code to deal with authentication, Do you suggest using Membership provider to deal with users or should i develop some custom Database in ...
8
votes
1answer
829 views

Has anyone written or used a Asp.NET membership provider that integrates with Facebook Connect?

I'm looking to allow Facebook Connect logins on my site, but still want to capture some user information and store it in the Profile object. Would also like to allow standard login/pass ...