Hi AdWords API Teams,

I use AdWords integrate with Firebase project, I create Conversion with 
Firebase events in the AdWords Platform, so I can see those conversions on 
the adwords.
But I can not retrieve those conversions 
using ConversionTrackerServiceInterface API, How can I do this.

Thanks.

some code I used.

CampaignServiceInterface campaignService =
    adWordsServices.get(session, CampaignServiceInterface.class);

int offset = 0;

SelectorBuilder builder1 = new SelectorBuilder();
Selector selector1 = builder1.fields(ConversionTrackerField.Id, 
ConversionTrackerField.AppId,
        ConversionTrackerField.Name).build();
ConversionTrackerServiceInterface trackerServiceInterface = 
adWordsServices.get(session, ConversionTrackerServiceInterface.class);
ConversionTrackerPage page1 = null;
do {
  page1 = trackerServiceInterface.get(selector1);

  if (page1.getEntries() != null) {
    for (ConversionTracker conversionTracker : page1.getEntries()) {
      System.out.printf("ConversionTracker with name '%s' and ID %d was 
found.%n", conversionTracker.getName(),
              conversionTracker.getId());
    }
  } else {
  }

  offset += PAGE_SIZE;
} while (offset < page1.getTotalNumEntries());


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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].
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a63b174f-dc98-4afa-83b0-876f46e1765f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
  • How can I retri... Jikai Zhang
    • Re: How ca... 'Peter Oliquino' via AdWords API Forum
      • Re: Ho... Jikai Zhang
        • Re... 'Michael Cloonan (AdWords API Team)' via AdWords API Forum

Reply via email to