New #access_denied with Facebook Login (ASP.NET MVC) -
i'm facing strange problem facebook login on website. it's new, facebook login has worked correctly , it's still working on android , ios app.
i have link in website like:
http://myurl/api/account/externallogin?provider=facebook&response_type=token&client_id=self&redirect_uri=http://myurl/home/register?
obviously in developer.facebook.com have set like, in oauth address have:
http://myurl http://myurl/home/register http://myurl/home/register?
and have localhost (that worked correctly since couple of days ago)
my app requires access:
var facebookauthenticationoptions = new facebookauthenticationoptions() { appid = "[hidden security reason]", appsecret = "[hidden security reason]" }; facebookauthenticationoptions.scope.add("email"); facebookauthenticationoptions.scope.add("user_friends"); facebookauthenticationoptions.scope.add("user_birthday"); app.usefacebookauthentication(facebookauthenticationoptions);
my graph api version v2.6
when click link, facebook, put credentials in , returns me myurl#access_denied.
does have clue?
facebook did "force upgrade" of graph api version 2.2 2.3 yesterday. issue , fix better explained here : asp.net mvc5 owin facebook authentication not working
Comments
Post a Comment