Thank you for answer.

However, there are some parts I don't understand.
If so, I think there should be no data from customer_extension_setting.

When I run the query below, 
The result of customer_extension_setting exists. 
But extension_feed_items column only empty.
SearchGoogleAdsRequest request = SearchGoogleAdsRequest.newBuilder()
.setCustomerId(***********)
.setPageSize(PAGE_SIZE)
.setQuery("SELECT customer_extension_setting.extension_type, 
customer_extension_setting.extension_feed_items FROM 
customer_extension_setting WHERE customer_extension_setting.extension_type 
= 'AFFILIATE_LOCATION'")
.build();
searchPagedResponse searchPagedResponse = 
googleAdsServiceClient.search(request);

for (GoogleAdsRow googleAdsRow : searchPagedResponse.iterateAll()) {
System.out.println(googleAdsRow.getCustomerExtensionSetting().getExtensionType().getValueDescriptor().getName());
System.out.println(googleAdsRow.getCampaignExtensionSetting().getExtensionFeedItemsList().toString());
}

result :
AFFILIATE_LOCATION
[]

Shouldn't 'searchPagedResponse' be null?



2020년 3월 17일 화요일 오전 2시 50분 58초 UTC+9, adsapiforumadvisor 님의 말:
>
> Hi Seungha,
>
> The reason there is no response is because there are no feed items 
> associated with the Affiliate Location extension you created at the 
> account/campaign/ad group levels. If you go to the UI and add the column 
> "Item ID" to the Extensions tab, you will see that it is 0 for the 
> Affiliate Location extensions so this is the expected API response.
>
> The data feed you set up does have an item ID which is why it shows up in 
> the extension_feed_item report but it is not associated with any specific 
> level.
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001UXUlhr:ref
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/47dd2c40-b1c0-4170-a309-d6397e9d81ec%40googlegroups.com.

Reply via email to