I am writing my first Google APIs Winforms application and I'm unable to figure out how to make an API call.
The example in this google "get started" documentation is not helping a lot.
I have a Client ID and secret and have authorized my app using these.
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));
I now want to call this API and see its results.
Can someone give me pointers on how do I go about it?