I am trying to get a workaround, so I donβt need to click the Allow button every time I use the Twitter API.
if (Request["oauth_token"] == null)
{
oAuth.CallBackUrl = "http://localhost";
Response.Redirect(oAuth.AuthorizationLinkGet());
}
In the above code example, I just get the OAuth token, but Twitter asks me to confirm that I want to allow access. Is there a workaround that I could not accept?
source
share