private void Button_Clicked(object sender, EventArgs e)
{
var auth = new OAuth2Authenticator(
clientId: "****",
clientSecret: "****",
scope: "r_liteprofile",
authorizeUrl: new Uri("https://www.linkedin.com/uas/oauth2/authorization"),
redirectUrl: new Uri("http://www.google.co.in/"),
accessTokenUrl: new Uri("https://www.linkedin.com/uas/oauth2/accessToken")
);
auth.AllowCancel = true;
auth.Completed += Auth_Completed;
}
private void Auth_Completed(object sender, AuthenticatorCompletedEventArgs e)
{
//My action
}