Hey all,

We are having a bit of issue accessing geo_performance_report. We have 
basic level API access (We can access live accounts)

We are running AWQL in Java.
Here's the code for authentication

public static void main(String[] args) {
        AdWordsSession session;
        try {
            // Generate a refreshable OAuth2 credential.
            Credential oAuth2Credential =
                    new OfflineCredentials.Builder()
                            .forApi(Api.ADWORDS)
                            .withClientSecrets("XXXXXXXXXXXXXXXX", 
"YYYYYYYYYYYYYYYY")
                            .withRefreshToken("ZZZZZZZZZZZZZZZ")
                            .build()
                            .generateCredential();

            AdWordsServicesInterface adWordsServices = 
AdWordsServices.getInstance();


            List<String> ids = new ArrayList<>(Arrays.asList(
                    "123-456- <541-659-9527>7890",
                    "234-567- <541-659-9527>8901",
            ));


            for (String id : ids) {
                // Construct an AdWordsSession.
                try {
                    session =
                            new AdWordsSession.Builder()
                                    .withDeveloperToken("WWWWWWWWWWWWWWWWWW")
                                    .withOAuth2Credential(oAuth2Credential)
                                    .withClientCustomerId(id)
                                    .build();
                    runExample(adWordsServices, session);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }

        } catch (OAuthException e) {
            e.printStackTrace();
        } catch (ValidationException e) {
            e.printStackTrace();
        }
    }


Once we've authenticated, we run the following method

public static void runExample(AdWordsServicesInterface adWordsServices, 
AdWordsSession session)
        throws ReportDownloadResponseException, ReportException, IOException {
        ReportQuery query =
                new ReportQuery.Builder()
                        .fields("AccountDescriptiveName", "Conversions", 
"Clicks", "Impressions", "Cost", "CountryCriteriaId")
                        .from(ReportDefinitionReportType.GEO_PERFORMANCE_REPORT)
                        .during(ReportDefinitionDateRangeType.LAST_30_DAYS)
                        .build();

        ReportingConfiguration reportingConfiguration =
                new ReportingConfiguration.Builder()
                        .build();
        session.setReportingConfiguration(reportingConfiguration);

        ReportDownloaderInterface reportDownloader =
                adWordsServices.getUtility(session, 
ReportDownloaderInterface.class);
        reportDownloader.setReportDownloadTimeout(60000);
        BufferedReader reader = null;
        try {

            final ReportDownloadResponse response =
                    reportDownloader.downloadReport(query.toString(), 
DownloadFormat.CSV);

            reader = new BufferedReader(new 
InputStreamReader(response.getInputStream(), UTF_8));


            String line;
            Splitter splitter = Splitter.on(',');
            while ((line = reader.readLine()) != null) {
                System.out.println(line);
            }

        } finally {
            if (reader != null) {
                reader.close();
            }
        }
    }



Here's the (partial) result:

Sep 16, 2019 5:20:21 PM 
com.google.api.ads.common.lib.utils.logging.RemoteCallLoggerDelegate 
logRequestSummary
INFO: Request made: Service: reportdownload Method: POST clientCustomerId: 
XXX-XXX-XXXX URL: 
https://adwords.google.com//api/adwords/reportdownload/v201809 Request ID: 
null ResponseTime(ms): null OperationsCount: null IsFault: false 
FaultMessage: null
"GEO_PERFORMANCE_REPORT (Aug 18, 2019-Sep 16, 2019)"
Account,Conversions,Clicks,Impressions,Cost,Country/Territory
Total,0.00,0,0,0, --

Total impressions by ad network type 1:

Sep 16, 2019 5:20:23 PM 
com.google.api.ads.common.lib.utils.logging.RemoteCallLoggerDelegate 
logRequestSummary
INFO: Request made: Service: reportdownload Method: POST clientCustomerId: 
XXX-XXX-XXXX URL: 
https://adwords.google.com//api/adwords/reportdownload/v201809 Request ID: 
null ResponseTime(ms): null OperationsCount: null IsFault: false 
FaultMessage: null
"GEO_PERFORMANCE_REPORT (Aug 17, 2019-Sep 15, 2019)"
Account,Conversions,Clicks,Impressions,Cost,Country/Territory
Total,0.00,0,0,0, --

Total impressions by ad network type 1:

As you can see the results are all zero. These are live accounts that spend 
6 figures per month. They cannot be zero.

We are not sure what's causing this issue. One team member thinks this 
might be an authentication issue. We ran another report 
(campaign_performance_report) and it worked fine (using the same auth 
method) so personally I don't think this is an authentication issue. 
Further more, if it's auth issue, I feel like the API should return some 
kind of auth error. 

I'm guessing the issue is caused by missing a parameter or selecting data 
in a way that's not supported. 

Anyway, thanks in advance! Any help is greatly appreciated!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads API Forum" group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/39fcc97c-9b09-4afa-a559-8c39a58a9c60%40googlegroups.com.

Reply via email to