c# - Register External Login Web API -
i don't understand why isn't clear tutorial or guideline on this, hope question can answered here.
so, trying register users facebook or google, via web api.
the problem is, @ registerexternal
method, on line:
var info = await authentication.getexternallogininfoasync();
it returns null, , returning badrequest()
what got far:
in startup.auth.cs
i've hadded id's , secrets, note have tried using microsoft.owin.security.facebook
var facebookoptions = new microsoft.owin.security.facebook.facebookauthenticationoptions { appid = "103596246642104", appsecret = "1c9c8f696e47bbc661702821c5a8ae75", provider = new facebookauthenticationprovider() { onauthenticated = (context) => { context.identity.addclaim(new system.security.claims.claim("urn:facebook:access_token", context.accesstoken, claimvaluetypes.string, "facebook")); return task.fromresult(0); } }, }; facebookoptions.scope.add("email"); app.usefacebookauthentication(facebookoptions); app.usegoogleauthentication(new googleoauth2authenticationoptions() { clientid = "328779658984-t9d67rh2nr681bahfusan0m5vuqeck13.apps.googleusercontent.com", clientsecret = "zycnhxbqh56y0j2-tyowp9q0", callbackpath = new pathstring("/api/account/manageinfo") });
facebookoptions source: this post
that facebookoptions did not solve problem.
i able retrieve access_token both google , facebook. i'm able authenticate access_token api/account/userinfo
get http://localhost:4856/api/account/userinfo in header: authorization: bearer r9btvhi0...
which returns: {"email":"firstname lastname","hasregistered":false,"loginprovider":"facebook"}
one issue notice their, returns name email, not actual email adress.
now want register external login new user database, make post call this:
post http://localhost:4856/api/account/registerexternal [header] authorization: bearer 6xcjouty... content-type: application/json [body] {"email":"...@hotmail.com"}
source: this post
now returns badrequest on code snippit, inside registerexternal():
public async task<actionresult> externalloginconfirmation(externalloginconfirmationviewmodel model, string returnurl) { if (!modelstate.isvalid) { return badrequest(modelstate); } //authenticationmanger? var info = await authentication.getexternallogininfoasync(); if (info == null) { return internalservererror(); }
in debugging, externalloginconfirmationviewmodel
contain email adress.
what doing wrong? have add startup.cs
? there more have in startup.auth.cs
? incorrectly calling registerexternal
? in mvc goes smooth, why not in web api?
aso looked @ this answer this question, didn't understand how implement this.
this method not practical, since developing api, used apps, best way handle login facebook api consumer, , let them send facebook auth token.
basically trying this:
- create external login link facebook.
- send user link bring them facebook login page.
- after login facebook redirect api.
- user registered, how app/website consuming api know?
what want this:
- api consumer creates own method login facebook (for apps via sdk's)
- api consumer send facebook token api register/login.
- api check token facebook graph endpoint.
- when succeeded, api return bearer token api make further authenticated requests.
so api developer, verify token so:
var verifytokenendpoint = string.format("https://graph.facebook.com/debug_token?input_token={0}&access_token={1}", accesstoken, apptoken);
and userid
var client = new httpclient(); var uri = new uri(verifytokenendpoint); var response = await client.getasync(uri); if (response.issuccessstatuscode) { var content = await response.content.readasstringasync(); dynamic jobj = (jobject)newtonsoft.json.jsonconvert.deserializeobject(content); string user_id = jobj["data"]["user_id"]; string app_id = jobj["data"]["app_id"]; }
eventually create or find user so:
identityuser user = await _usermanager.findasync(new userlogininfo(provider, verifiedaccesstoken.user_id));
and it's how create bearer token, if follow tutorial listed below, have this:
var tokenexpiration = timespan.fromminutes(30); claimsidentity identity = new claimsidentity(oauthdefaults.authenticationtype); identity.addclaim(new claim(claimtypes.name, username)); identity.addclaim(new claim("role", "user")); var props = new authenticationproperties() { issuedutc = datetime.utcnow, expiresutc = datetime.utcnow.add(tokenexpiration), }; var ticket = new authenticationticket(identity, props); var accesstoken = startup.oauthbeareroptions.accesstokenformat.protect(ticket);
source, full tutorial here
i've got email via sdk , send along post request, since managed both api , consumer. warning though: facebook user might not want give e-mail address.
Comments
Post a Comment