Is it possible to access without authorization code through command prompt?

ZommokAgreego

New Member
How can I access the authorization code through a Text Box with a button?Without using this:// Request authorization from the user (by opening a browser window): \[code\]Process.Start(authUri.ToString());Console.Write(" Authorization Code: "); string authCode = Console.ReadLine(); Console.WriteLine()\[/code\]// Retrieve the access token by using the authorization code:\[code\]return arg.ProcessUserAuthorization(authCode, state);\[/code\]
 
Back
Top