oauth - Dotnet open auth with Facebook and Email/Password login with aspnet_membership tables -
i'm building first mobile app in users can login. app talks webservices on site's backend.
users can login/register via either
- facebook or
- an email/password combination
in both cases (upon registration) add user data aspnet_membership tables, in case of facebook registration thing store facebook id.
now, want use dotnetopenauth facilitate login , registration process. need alter code logic creates/retrieves data aspnet_membership database tables.
is possible , if so, have code samples?
first of all, should not alter aspnet_membership table. if so, underlying store procedures stop working.
instead, want create new table userid primary key, , make one-to-one relationship aspnet_membership table.
fyi: asp .net membership provider using more 10 years old, , not actively developing anymore.
if developing new project, should consider using new asp.net identity support facebook login out of box.
Comments
Post a Comment