Reputation: 731
I am trying to use OAuth2 client of xamarin with facebook, I tried this:
var auth = new OAuth2Authenticator(
clientId: "xxxxxxxxxx",
scope: "",
authorizeUrl: new Uri("https://www.facebook.com/dialog/oauth/"),
redirectUrl: new Uri("http://www.facebook.com/connect/login_success.html"));
auth.Completed += (s, ee) => { .... }
StartActivity(auth.GetUI(this));
However, Completed
never called.. Any idea?
Upvotes: 2
Views: 243