I am quite new to Linq2Twitter. There aren't much samples either. I took an existing app made using Linq2Twitter and using it's code verbatim (except the keys in configuration obviously). Whenever it reaches AuthorizeAsync(), it fails:
var auth = PerformAuthorization();
try
{
await auth.AuthorizeAsync();
}
catch (Exception ex)
{
MessageBox.Show("\n\nPlease make sure that:"
+ "\n\t- your computer's date/time is accurate;"
+ "\n\t- you entered the exact PIN returned by Twitter."
+ "\n\n\nTwitter error message: " + ex.Message,
"Twitter Archive Eraser");
return;
}
How should I fix it now?