Re: get ExtensionFeedItems of type AFFILIATE_LOCATION

2020-03-22 Thread Seungha Kim
Thanks for checking.
I need to think more about how to handle this issue.

It's a different issue, but can you check one more thing?
Keywords contain special characters.
However, when you collect keyword information using adsAPI, keyword text is 
collected with special characters removed.

For example,
keyword text : [대행사]
collected keyword text(ads API) : 대행사
customerID : 9621225584
groupID : 85830355130
keywordID : 392189972143

Is there any way to collect keyword text that has no special characters 
erased?

Thanks, :)

2020년 3월 18일 수요일 오전 3시 9분 47초 UTC+9, adsapiforumadvisor 님의 말:
>
> 안녕하세요 Seungha, 
>
> 확장 설정이 존재하지만 항목 배열이 비어 있지만 반환 값이 표시되는 항목으로 채워지지 않습니다. 
>
> 감사합니다. 
> Mitchell 
> Google Ads API 팀 
>
> 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/66046a2f-31ef-47a2-9822-76be021162cc%40googlegroups.com.


Re: get ExtensionFeedItems of type AFFILIATE_LOCATION

2020-03-16 Thread Seungha Kim
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.


Re: get ExtensionFeedItems of type AFFILIATE_LOCATION

2020-03-15 Thread Seungha Kim

HI,

When all three resources are queried with aa type, the items value 
continues to be empty.


1. 
SELECT customer_extension_setting.extension_type, 
customer_extension_setting.extension_feed_items 
FROM customer_extension_setting 
WHERE customer_extension_setting.extension_type = *'AFFILIATE_LOCATION'*

result :
googleAdsRow.getCustomerExtensionSetting().getExtensionType().getValueDescriptor().getName()
 
=>
googleAdsRow.getCustomerExtensionSetting().getExtensionFeedItemsList() => 
[] (=size 0)


2.
SELECT campaign.id, campaign.name, 
campaign_extension_setting.extension_type, 
campaign_extension_setting.extension_feed_items 
FROM campaign_extension_setting 
WHERE campaign_extension_setting.extension_type = '*AFFILIATE_LOCATION*'

result :
googleAdsRow.getCampaign().getId().getValue() => 8963**
googleAdsRow.getCampaign().getName().getValue() => 검색_T_01
googleAdsRow.getCampaignExtensionSetting().getExtensionType().getValueDescriptor().getName()
 
=> AFFILIATE_LOCATION
googleAdsRow.getCampaignExtensionSetting().getExtensionFeedItemsList() => 
[] (=size 0)


3.
SELECT ad_group.id, ad_group.name, 
ad_group_extension_setting.extension_type, 
ad_group_extension_setting.extension_feed_items  
FROM ad_group_extension_setting 
WHERE ad_group_extension_setting.extension_type = '*AFFILIATE_LOCATION*'

result :
googleAdsRow.getAdGroup().getId().getValue() => 8583***
googleAdsRow.getAdGroup().getName().getValue() => 광고그룹 2
googleAdsRow.getAdGroupExtensionSetting().getExtensionType().getValueDescriptor().getName()
 
=> AFFILIATE_LOCATION
googleAdsRow.getAdGroupExtensionSetting().getExtensionFeedItemsList() => [] 
(=size 0)

only 'AFFILIATE_LOCATION' type!!

Thanks, :)



2020년 3월 14일 토요일 오전 4시 2분 16초 UTC+9, adsapiforumadvisor 님의 말:
>
> Hi Seungha,
>
> Looking at your account, I noticed that that sitelink extension is set at 
> the ad group level. Can you confirm that it only shows up when using the 
> ad_group_extension_settings report?
>
> 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/8af44819-933f-4a36-bafe-096512787581%40googlegroups.com.


Re: get ExtensionFeedItems of type AFFILIATE_LOCATION

2020-03-12 Thread Seungha Kim


Thanks for the reply. Please check again.



2020년 3월 12일 목요일 오전 3시 2분 34초 UTC+9, adsapiforumadvisor 님의 말:
>
> Hi Seungha,
>
> Thank you for reaching out. What is your client customer ID? Also, what 
> level is the affiliate location set at?
>
> 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/3365f680-e757-45e9-91fc-c4bff626a716%40googlegroups.com.


Re: get ExtensionFeedItems of type AFFILIATE_LOCATION

2020-03-11 Thread Seungha Kim

I wrote the clientid with a private reply. Please check.


Thanks, :)

2020년 3월 12일 목요일 오전 3시 2분 34초 UTC+9, adsapiforumadvisor 님의 말:
>
> Hi Seungha,
>
> Thank you for reaching out. What is your client customer ID? Also, what 
> level is the affiliate location set at?
>
> 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/d372c9c4-a828-4929-b84a-ff292e2ce4e4%40googlegroups.com.


Re: data of type 'SMART DISPLAY' from 'ad_group_ad'

2020-03-11 Thread Seungha Kim
tesa

2019년 6월 19일 수요일 오후 6시 2분 30초 UTC+9, Seungha Kim 님의 말:
>
> I sent a message, please check. I will be waiting for your answer.
>
> Thanks, Bharani
>
> 2019년 6월 12일 수요일 오후 10시 37분 48초 UTC+9, adsapiforumadvisor 님의 말:
>>
>> Hello Seungha, 
>>
>> Regret the delay. Could you please share the client customer Id, using 
>> the Reply privately to author option to check this further?
>>
>> Thanks,
>> Bharani, Google Ads API Team
>>
>> ref:_00D1U1174p._5001UBlPAg: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/718f9ccb-c944-40a8-af5b-9ebe48c0650a%40googlegroups.com.


Re: get ExtensionFeedItems of type AFFILIATE_LOCATION

2020-03-11 Thread Seungha Kim

customer ID : 9621225584
extensionFeedItem ID : 111312484441

It is confirmed that it is set in the account.

Thanks, :)


2020년 3월 12일 목요일 오전 3시 2분 34초 UTC+9, adsapiforumadvisor 님의 말:
>
> Hi Seungha,
>
> Thank you for reaching out. What is your client customer ID? Also, what 
> level is the affiliate location set at?
>
> 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/1d6fc055-7fd6-4690-bcbc-5dd6a7ef8b21%40googlegroups.com.


get ExtensionFeedItems of type AFFILIATE_LOCATION

2020-03-11 Thread Seungha Kim
I am trying to get ExtensionFeedItems(type=AFFILIATE_LOCATION)data, using 
CustomerExtensionSetting
but, the following query does not return resourceNames.

*SELECT customer_extension_setting.extension_type, 
customer_extension_setting.extension_feed_items*
*FROM customer_extension_setting*

*result : *
*customer_extension_setting.extension_type : AFFILIATE_LOCATION*
*customer_extension_setting.extension_feed_items : []*

There is no result only when executing a query with AFFILIATE_LOCATION type.
I don't know why.

Thanks, :)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/74b30f14-64c4-4b42-9fdf-3f85be4df643%40googlegroups.com.


Re: using Ads API and no response.

2020-03-10 Thread Seungha Kim
Hi,

data exists in that account.

If the results are returned as 0 or n, it will be possible to handle. 
but the adsAPI will not operate in the code below, without any error.

SearchPagedResponse searchPagedResponse = client.search(request);


2020년 3월 11일 수요일 오전 4시 58분 2초 UTC+9, adsapiforumadvisor 님의 말:
>
> Hi Seungha,
>
> Thank you for reaching out. My guess is that you are trying to make the 
> call using a manager account which is why it returned as empty. Please make 
> the call using a client account instead.
>
> If this is not the issue, please share the client customer ID you are 
> using.
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001UXUgk1: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/488ab0f7-eb40-4273-9f03-90501f9e8693%40googlegroups.com.


extensionFeedItem AND customer set, campaign set, adgroup set

2020-03-10 Thread Seungha Kim
I'm collecting ExtensionFeedItem AND ExtensionSetting data, using adsAPI.

I have checked the description below.
Fields from the above resources, when selected along with this resource in 
your SELECT and WHERE clauses, will segment metrics.

So, I currently collect data ExtensionFeedItem and 
[CustomerExtensionSetting, CampaignExtensionSetting, 
AdGroupExtensionSetting] separately 
and then use RESOURCENAME to reprocess the data.

The process is as follows:

*1. ExtensionFeedItem*
SELECT extension_feed_item.id, extension_feed_item.resource_name 
FROM extension_feed_item 

*2. CustomerExtensionSetting*
SELECT customer_extensionSetting.resource_name
FROM customer_extensionSetting

*3. CampaignExtensionSetting*
SELECT campaign.id, campaign_extension_setting.resource_name
FROM campaign_extension_setting

*4. AdGroupExtensionSetting*
SELECT ad_group.id, ad_group_extension_setting.resource_name
FROM ad_group_extension_setting


Is there a way to get ExtensionFeedItem and [CustomerExtensionSetting, 
CampaignExtensionSetting, AdGroupExtensionSetting] resources together?
Too uncomfortable. Is there no way?
For example, I want to receive data like the following query:

SELECT campaign.id, 
ad_group.id, 
extension_feed_item.id
FROM extension_feed_item 
-> but result : 0 ..

Thanks. :)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/84c73861-5b6c-4a00-90eb-22b1c4b6880e%40googlegroups.com.


using Ads API and no response.

2020-03-10 Thread Seungha Kim
Hello, Ads API Team.

using Ads api (v4.2.0) and no response.
After sending the request I didn't receive a response without any error.
When I checked it in the Google Developer Console, it showed that it 
responded normally.
I'm developing in a threaded environment and the API stays waiting without 
receiving a response.
Was there a similar case?


UserCredentials credentials = UserCredentials.newBuilder()
.setClientId(***)
.setClientSecret(***)
.setRefreshToken(***)
.build();

GoogleAdsClient googleAdsClient = GoogleAdsClient.newBuilder()
.setCredentials(credentials)
.setDeveloperToken(***)
.setLoginCustomerId(***
.build();
GoogleAdsServiceClient client = 
googleAdsClient.getLatestVersion().createGoogleAdsServiceClient();
SearchGoogleAdsRequest request = SearchGoogleAdsRequest.newBuilder()
.setCustomerId()
.setPageSize(PAGE_SIZE).setQuery("SELECT campaign.id FROM campaign")
.build();
// ISSUE line
SearchPagedResponse searchPagedResponse = client.search(request);

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/16fd87b5-ba98-4cdd-8089-16159209f532%40googlegroups.com.


[ads API (v1)] Internal error encountered.

2019-06-19 Thread Seungha Kim
Hello, Google Ads API Team.

We use 'ads API(v1, Java Client)' to collect report data.
However, exceptions occur frequently.
The reason for this exception can not be determined and will work if you 
try again.
I want to know the reason for this exception.
I will be waiting for your answer.

UserCredentials credentials = UserCredentials.newBuilder()
.setClientId("")
.setClientSecret("*")
.setRefreshToken("**")
.build();
GoogleAdsClient googleAdsClient = GoogleAdsClient.newBuilder()
.setCredentials(credentials)
.setDeveloperToken("***")
.setLoginCustomerId(**)
.build();

GoogleAdsServiceClient googleAdsServiceClient = 
googleAdsClient.getVersion1().createGoogleAdsServiceClient();

SearchGoogleAdsRequest request = SearchGoogleAdsRequest.newBuilder()
.setCustomerId(customerId)
.setPageSize(7000)
.setQuery(query)
.build();

SearchPagedResponse response = googleAdsServiceClient.search(request);

query : 
SELECT segments.date, 
campaign.id, 
campaign.name, 
ad_group.id, 
ad_group.name, 
ad_group_ad.ad.id,
ad_group_ad.ad.name, 
ad_group_ad.status, 
segments.ad_network_type, 
segments.device, 
metrics.clicks, 
metrics.impressions, 
metrics.cost_micros, 
metrics.conversions, 
metrics.all_conversions, 
metrics.conversions_value, 
metrics.all_conversions_value, 
metrics.average_position, 
metrics.video_views, 
metrics.absolute_top_impression_percentage, 
metrics.top_impression_percentage 
FROM ad_group_ad 
WHERE segments.ad_network_type NOT IN ('SEARCH', 'SEARCH_PARTNERS') 
AND segments.date BETWEEN '2019-06-18' AND '2019-06-18'


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a61ae541-d252-49a8-a036-069005a51540%40googlegroups.com.
[WARN ](RequestLogger.java:159) FAILURE REQUEST SUMMARY. Method: 
google.ads.googleads.v1.services.GoogleAdsService/Search, Endpoint: 
googleads.googleapis.com:443, CustomerID: **, RequestID: 
ywBtLiS6h6SyeGVrc4B-kw, ResponseCode: INTERNAL, Fault: Internal error 
encountered..

---
MethodName: google.ads.googleads.v1.services.GoogleAdsService/Search
Endpoint: googleads.googleapis.com:443
Headers: {developer-token=REDACTED, login-customer-id=**, 
x-goog-api-client=gl-java/1.8.0_181 gapic/ gax/1.35.0 grpc/1.16.1}
Body: customer_id: "**"
query: "SELECT segments.date, campaign.id, campaign.name, ad_group.id, 
ad_group.name, ad_group_ad.ad.id, ad_group_ad.ad.name, ad_group_ad.status, 
segments.ad_network_type, segments.device, metrics.clicks, metrics.impressions, 
metrics.cost_micros, metrics.conversions, metrics.all_conversions, 
metrics.conversions_value, metrics.all_conversions_value, 
metrics.average_position, metrics.video_views, 
metrics.absolute_top_impression_percentage, metrics.top_impression_percentage 
FROM ad_group_ad WHERE segments.ad_network_type NOT IN (\'SEARCH\', 
\'SEARCH_PARTNERS\') AND segments.date BETWEEN \'2019-06-18\' AND 
\'2019-06-18\' "
page_size: 7000


Response

Headers: 
Metadata(content-type=application/grpc,request-id=ywBtLiS6h6SyeGVrc4B-kw,date=Wed,
 19 Jun 2019 07:03:41 GMT,alt-svc=quic=":443"; ma=2592000; v="46,44,43,39")
Body: null
Failure message: null
Status: Status{code=INTERNAL, description=Internal error encountered., 
cause=null}.

ERROR: io.grpc.StatusRuntimeException: INTERNAL: Internal error encountered.
com.google.api.gax.rpc.InternalException: io.grpc.StatusRuntimeException: 
INTERNAL: Internal error encountered.
at 
com.google.api.gax.rpc.ApiExceptionFactory.createException(ApiExceptionFactory.java:67)
at 
com.google.api.gax.grpc.GrpcApiExceptionFactory.create(GrpcApiExceptionFactory.java:72)
at 
com.google.api.gax.grpc.GrpcApiExceptionFactory.create(GrpcApiExceptionFactory.java:60)
at 
com.google.api.gax.grpc.GrpcExceptionCallable$ExceptionTransformingFuture.onFailure(GrpcExceptionCallable.java:97)
at com.google.api.core.ApiFutures$1.onFailure(ApiFutures.java:68)
at com.google.common.util.concurrent.Futures$4.run(Futures.java:1123)
at 

Re: data of type 'SMART DISPLAY' from 'ad_group_ad'

2019-06-19 Thread Seungha Kim
I sent a message, please check. I will be waiting for your answer.

Thanks, Bharani

2019년 6월 12일 수요일 오후 10시 37분 48초 UTC+9, adsapiforumadvisor 님의 말:
>
> Hello Seungha, 
>
> Regret the delay. Could you please share the client customer Id, using the 
> Reply privately to author option to check this further?
>
> Thanks,
> Bharani, Google Ads API Team
>
> ref:_00D1U1174p._5001UBlPAg: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/b7284e84-3ddd-4c03-87f2-0760e99c548b%40googlegroups.com.


data of type 'SMART DISPLAY' from 'ad_group_ad'

2019-06-03 Thread Seungha Kim
Hi,

I used "ads API" to get a report of 'ad_group_ad'.

But there is a difference between the data I see on the web page.(
ads.google.com)
Under the same conditions, two ads are searched on a webpage, but only one 
ad can be collected from the 'ads API'.
AD data that was not collected through the API was checked on the web page, 
all of which were of type 'SMART DISPLAY AD'.

Can not collect ad data of type 'SMART DISPLAY' from 'ad_group_ad'? Please 
let me know if there is a way.

query : 
SELECT segments.date, 
campaign.id, 
campaign.name, 
ad_group.id, 
ad_group.name, 
ad_group_ad.ad.id, 
ad_group_ad.ad.name, 
segments.ad_network_type, 
segments.device, 
metrics.clicks,
metrics.impressions, 
metrics.cost_micros, 
metrics.conversions, 
metrics.all_conversions,
metrics.conversions_value, 
metrics.all_conversions_value, 
metrics.average_position, 
metrics.video_views,
metrics.absolute_top_impression_percentage, 
metrics.top_impression_percentage
FROM ad_group_ad

We are running MIGRATION from 'adwords API' to 'ads API'.
Previously, you could get all the AD data from the 'AdWords API' 
CRITERIA_PERFORMANCE_REPORT.

Thanks. : )

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/caac804c-7d8f-4f96-82b6-8b7776d340e4%40googlegroups.com.


ads API report (ad_group_ad)

2019-05-28 Thread Seungha Kim
Hi,

I used "ads API" to get a report of 'ad_group_ad'.

But there is a difference between the data I see on the web 
page.(ads.google.com)
Under the same conditions, two ads are searched on a webpage, but only one 
ad can be collected from the 'ads API'.
AD data that was not collected through the API was checked on the web page, 
all of which were of type 'SMART DISPLAY AD'.

Can not collect ad data of type 'SMART DISPLAY' from 'ad_group_ad'? Please 
let me know if there is a way.

query : 
SELECT segments.date, 
campaign.id, 
campaign.name, 
ad_group.id, 
ad_group.name, 
ad_group_ad.ad.id, 
ad_group_ad.ad.name, 
segments.ad_network_type, 
segments.device, 
metrics.clicks,
metrics.impressions, 
metrics.cost_micros, 
metrics.conversions, 
metrics.all_conversions,
metrics.conversions_value, 
metrics.all_conversions_value, 
metrics.average_position, 
metrics.video_views,
metrics.absolute_top_impression_percentage, 
metrics.top_impression_percentage
FROM ad_group_ad

We are running MIGRATION from 'adwords API' to 'ads API'.
Previously, you could get all the AD data from the 'AdWords API' 
CRITERIA_PERFORMANCE_REPORT.

Thanks. : )

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/34b70aef-beca-459b-b581-f2a0c591049d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: About top and absolute top metrics

2019-05-27 Thread Seungha Kim
Thank you for your quick reply.

If so, I'll collect the "search top impression rate" and "impressions", 
calculate the "top impressions" and follow your "ad blog".
(ex. "top impressions" = search top impression rate * impressions)

Have a good day.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/339a1478-c37c-416a-83f4-f7115216bb40%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: About top and absolute top metrics

2019-05-27 Thread Seungha Kim


2019년 5월 27일 월요일 오후 3시 25분 46초 UTC+9, Seungha Kim 님의 말:
>
>
> Hi,
>
> I checked the contents of 'About top and absolute top metrics'. (
> https://support.google.com/google-ads/answer/7501826)
> There is a question during collection of related metrics.
>
> Search top impression rate = Impressions on top/Impressions
> (= metrics.top_impression_percentage)
>
> Search absolute top impression rate = Impressions on the absolute 
> top/Impressions
> (= metrics.absolute_top_impression_percentage)
>
> Absolute top impression share = Impressions on absolute top/eligible 
> impressions on top
> (= metrics.search_absolute_top_impression_share)
>
> Search top impression share = Impressions on top/eligible impressions on 
> top
> (= metrics.search_top_impression_share)
>
> Can I collect the "Top Impressions", "Absolute Top Impressions", and 
> "Absolute Top Impressions" in the formula via the Ads API?
> Currently, we use the method of collecting 'Search top impression rate' 
> and 'Impressions' and calculating them in reverse.
> If not, do you plan to provide it later?
>
> Thanks. :)
>

2019년 5월 27일 월요일 오후 3시 25분 46초 UTC+9, Seungha Kim 님의 말:
>
>
> Hi,
>
> I checked the contents of 'About top and absolute top metrics'. (
> https://support.google.com/google-ads/answer/7501826)
> There is a question during collection of related metrics.
>
> Search top impression rate = Impressions on top/Impressions
> (= metrics.top_impression_percentage)
>
> Search absolute top impression rate = Impressions on the absolute 
> top/Impressions
> (= metrics.absolute_top_impression_percentage)
>
> Absolute top impression share = Impressions on absolute top/eligible 
> impressions on top
> (= metrics.search_absolute_top_impression_share)
>
> Search top impression share = Impressions on top/eligible impressions on 
> top
> (= metrics.search_top_impression_share)
>
> Can I collect the "Top Impressions", "Absolute Top Impressions", and 
> "Absolute Top Impressions" in the formula via the Ads API?
> Currently, we use the method of collecting 'Search top impression rate' 
> and 'Impressions' and calculating them in revese.
> If not, do you plan to provide it later?
>
> Thanks. :)
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/95dce164-258f-4216-8f73-f0cd75018edb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


About top and absolute top metrics

2019-05-27 Thread Seungha Kim
Hi,

I checked the contents of 'About top and absolute top metrics'. 
(https://support.google.com/google-ads/answer/7501826)
There is a question during collection of related metrics.

Search top impression rate = Impressions on top/Impressions
(= metrics.top_impression_percentage)

Search absolute top impression rate = Impressions on the absolute 
top/Impressions
(= metrics.absolute_top_impression_percentage)

Absolute top impression share = Impressions on absolute top/eligible 
impressions on top
(= metrics.search_absolute_top_impression_share)

Search top impression share = Impressions on top/eligible impressions on top
(= metrics.search_top_impression_share)

Can I collect the "Top Impressions", "Absolute Top Impressions", and 
"Absolute Top Impressions" in the formula via the Ads API?
Currently, we use the method of collecting 'Search top impression rate' and 
'Impressions' and calculating them in reverse.
If not, do you plan to provide it later?

Thanks. :)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/412087d9-adf0-4dd2-ad53-422a40f70eae%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


ads API report (ad_group_ad)

2019-05-27 Thread Seungha Kim
ads API report (ad_group_ad)
Hi,

I used "ads API" to get a report of 'ad_group_ad'.

But there is a difference between the data I see on the web 
page.(ads.google.com)
Under the same conditions, two ads are searched on a web page, but only one 
ad can be collected from the 'ads API'.
AD data that was not collected through the API was checked on the web page, 
all of which were of type 'SMART DISPLAY AD'.

Can not collect ad data of type 'SMART DISPLAY' from 'ad_group_ad'? Please 
let me know if there is a way.

query : 
SELECT segments.date, 
campaign.id, 
campaign.name, 
ad_group.id, 
ad_group.name, 
ad_group_ad.ad.id, 
ad_group_ad.ad.name, 
segments.ad_network_type, 
segments.device, 
metrics.clicks,
metrics.impressions, 
metrics.cost_micros, 
metrics.conversions, 
metrics.all_conversions,
metrics.conversions_value, 
metrics.all_conversions_value, 
metrics.average_position, 
metrics.video_views,
metrics.absolute_top_impression_percentage, 
metrics.top_impression_percentage
FROM ad_group_ad

We are running MIGRATION from 'adwords API' to 'ads API'.
Previously, you could get all the AD data from the 'AdWords API' 
CRITERIA_PERFORMANCE_REPORT.

Thanks. : )

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/2127b11f-8874-4437-b7d8-2f882e85e392%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


About top and absolute top metrics

2019-05-27 Thread Seungha Kim

Hi,

I checked the contents of 'About top and absolute top metrics'. 
(https://support.google.com/google-ads/answer/7501826)
There is a question during collection of related metrics.

Search top impression rate = Impressions on top/Impressions
(= metrics.top_impression_percentage)

Search absolute top impression rate = Impressions on the absolute 
top/Impressions
(= metrics.absolute_top_impression_percentage)

Absolute top impression share = Impressions on absolute top/eligible 
impressions on top
(= metrics.search_absolute_top_impression_share)

Search top impression share = Impressions on top/eligible impressions on top
(= metrics.search_top_impression_share)

Can I collect the "Top Impressions", "Absolute Top Impressions", and 
"Absolute Top Impressions" in the formula via the Ads API?
Currently, we use the method of collecting 'Search top impression rate' and 
'Impressions' and calculating them in reverse.
If not, do you plan to provide it later?

Thanks. :)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
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/6f360e54-8558-44dd-8277-a647afcc0e4c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.