Hello there,
Please feel free to use the examples provided in the CheatSheet.cs.
Here is how to create credentials from a console application.
Linvi
Please feel free to use the examples provided in the CheatSheet.cs.
Here is how to create credentials from a console application.
privatestatic IOAuthCredentials CredentialsCreator_WithCaptcha_StepByStep(string consumerKey, string consumerSecret) { var applicationCredentials = CredentialsCreator.GenerateApplicationCredentials(consumerKey, consumerSecret); var url = CredentialsCreator.GetAuthorizationURL(applicationCredentials); Console.WriteLine("Go on : {0}", url); Console.WriteLine("Enter the captch : "); var captcha = Console.ReadLine(); var newCredentials = CredentialsCreator.GetCredentialsFromVerifierCode(captcha, applicationCredentials); Console.WriteLine("Access Token = {0}", newCredentials.AccessToken); Console.WriteLine("Access Token Secret = {0}", newCredentials.AccessTokenSecret); return newCredentials; }