我正在编写我的第一个Google API Winforms应用程序,但我无法弄清楚如何进行API调用。
此谷歌“开始使用”documentation中的示例并没有太大帮助。
我有一个客户ID和密码,并使用这些来授权我的应用。
ClientSecrets cs = new ClientSecrets { ClientId = "<...>.apps.googleusercontent.com", ClientSecret = "<...>" };
var credential = GoogleWebAuthorizationBroker.AuthorizeAsync(cs, new[] { @"https://www.googleapis.com/auth/doubleclickbidmanager" }, "user",
System.Threading.CancellationToken.None, new Google.Apis.Util.Store.FileDataStore(@"C:\temp", true));
我现在想要调用this API并查看其结果。
有人可以指点我如何去做吗?
答案 0 :(得分:1)
安装nugget包Install-Package Google.Apis.Doubleclickbidmanager.v1
以下代码适用于Oauth2
string clientId = "ddd";
string clientSecret = "ddd";
var credential = GoogleWebAuthorizationBroker.AuthorizeAsync(new ClientSecrets { ClientId = clientId, ClientSecret = clientSecret }
, scopes
, "test"
, CancellationToken.None
, new FileDataStore(".",true)).Result;
var service = new DoubleClickBidManagerService(new BaseClientService.Initializer()
{
HttpClientInitializer = credential,
ApplicationName = "xyz",
});
您的所有通话都应通过服务
service.Lineitems.Downloadlineitems(body).Execute();