我正在尝试使用简单的C#控制台应用程序获取Google授权代码。整个过程非常简单:使用包含唯一Client Id
的网址向Google Oauth2端点发送请求,登录Google帐户然后获取授权码:
string url = "https://accounts.google.com/o/oauth2/v2/auth?whatever";
Process.Start("chrome.exe", url); // open up browser so user can log in
// get the auth code from chrome
如何从Google Chrome中获取生成的代码并将其传回我的应用程序?