I am trying to use the API to retrieve reporting data from AdWords like 
Clicks/Impressions/CPC and such but I am having a hard time finding out 
exactly which method to use and how.

The making of an AdWordUser in C# and setting up all the authentication 
with the OAuth2 Client ID/Secret is all explained very well and works for 
me fine. But now I am stuck with my authenticated setup but no good way to 
pull data from API.

I tried looking at the examples but using the ReportUtilities to download 
reports was not helpful since all the methods are deprecated.
I am trying to look into using the services to retrieve data from it in the 
following way:

ConversionTrackerService service = 
(ConversionTrackerService)user.GetService(AdWordsService.v201406.ConversionTrackerService);
Selector selector = new Selector();
selector.fields = new string[] { "Id" };
ConversionTrackerPage page = service.get(selector);

But this results in a null value for the entries.

I also found about the HTTP Requests in the  documentation but I don't know 
how to call that from C# since there is no clear tutorial on it. 

Can anyone offer me some help with this?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API Forum" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to