RE: Fwd: Is there any problem in ads API

2019-12-13 Thread Google Ads API Forum Advisor Prod
Hi,

Could you please share the client customer Id against which you're running this 
query to check this further? You can share the details privately via Reply 
privately to author option.

Thanks,
Bharani, Google Ads API Team
ref:_00D1U1174p._5001UOENiZ: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/J4lrG0Q2GWJV00Albrlqp1TLSA2-pXqtW7XA%40sfdc.net.


Fwd: Is there any problem in ads API

2019-12-12 Thread cooing pop
The questions are as follows.

There is a problem when requesting Google ad API.

My application use google-ads 3.0 version.
and import com.google.ads.googleads.v1.services.

#1 For each advertiser account, call the API that obtains keyword effect 
data, but all data that is imported by API calls  be zero.

#2 and sometimes get exception error like this 
io.grpc.StatusRuntimeException: UNAVAILABLE: 502:Bad Gateway

Thank you for reading this question.



2019년 12월 13일 금요일 오전 3시 56분 12초 UTC+9, adsapiforumadvisor 님의 말:
>
> Hello, 
>
> Thank you for reaching out to support. We are not aware of any known 
> issues at this time. The error while querying for the API reports could be 
> a transient issue and retrying the request with a backoff will usually 
> work. Could you please give this a try? If you're seeing this issue, please 
> share the request and response logs using *Reply privately to author* 
> option to investigate further?
>
> Regarding your second concern, I was able to check this internally with 
> the team and they suspect that it is possibly a network issue. Could you 
> try viewing the documentation on a different machine to see if this is 
> reproducible? If it's only happening from one machine, then it may be 
> environmental. 
>
> Regards,
> Bharani, Google Ads API Team
>
> ref:_00D1U1174p._5001UOENiZ: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/8a10f78f-e2ea-46e0-be56-e76772f22604%40googlegroups.com.


Re: Is there any problem in ads API

2019-12-12 Thread cooing pop
The questions are as follows.


There is a problem when requesting Google ad API.

My application use google-ads 3.0 version.
and import com.google.ads.googleads.v1.services.

Use that query to get your Google ad account list.

STEP 1.

"SELECT segments.date, metrics.impressions, metrics.clicks, 
metrics.cost_micros, metrics.conversions, metrics.all_conversions, 
metrics.conversions_value, metrics.all_conversions_value FROM customer 
WHERE segments.date BETWEEN '%s' AND '%s'";

STEP 2. keywordQuery

"SELECT segments.date, campaign.id, campaign.name, ad_group.id, 
ad_group.name, ad_group_criterion.criterion_id, 
ad_group_criterion.keyword.text, ad_group_criterion.status, 
segments.ad_network_type, segments.device, metrics.impressions, 
metrics.clicks, metrics.cost_micros, metrics.conversions, 
metrics.all_conversions, metrics.average_position, 
metrics.conversions_value, metrics.all_conversions_value, 
metrics.absolute_top_impression_percentage, 
metrics.top_impression_percentage, 
metrics.search_absolute_top_impression_share, 
metrics.search_top_impression_share, 
metrics.search_budget_lost_absolute_top_impression_share, 
metrics.search_budget_lost_top_impression_share, 
metrics.search_rank_lost_absolute_top_impression_share, 
metrics.search_rank_lost_top_impression_share FROM keyword_view WHERE 
segments.date BETWEEN '%s' AND '%s' ";


Call api logic like this.

SearchGoogleAdsRequest request = SearchGoogleAdsRequest.newBuilder()
.setCustomerId(id)
.setPageSize(PAGE_SIZE)
.setQuery(getAWQLString(keywordQuery, startYmd, reportYmd))
.build();
SearchPagedResponse response = googleAdsServiceClient.search(request);

#1 For each advertiser account, call the API that obtains keyword effect 
data, but all data that is imported by API calls  be zero.

#2 and sometimes get exception error like this 
io.grpc.StatusRuntimeException: UNAVAILABLE: 502:Bad Gateway

Thank you for reading this question.

2019년 12월 13일 금요일 오전 3시 56분 12초 UTC+9, adsapiforumadvisor 님의 말:
>
> Hello, 
>
> Thank you for reaching out to support. We are not aware of any known 
> issues at this time. The error while querying for the API reports could be 
> a transient issue and retrying the request with a backoff will usually 
> work. Could you please give this a try? If you're seeing this issue, please 
> share the request and response logs using *Reply privately to author* 
> option to investigate further?
>
> Regarding your second concern, I was able to check this internally with 
> the team and they suspect that it is possibly a network issue. Could you 
> try viewing the documentation on a different machine to see if this is 
> reproducible? If it's only happening from one machine, then it may be 
> environmental. 
>
> Regards,
> Bharani, Google Ads API Team
>
> ref:_00D1U1174p._5001UOENiZ: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/9f4ac70a-99c8-4d45-a400-ed0e3fd7771f%40googlegroups.com.


Re: Is there any problem in ads API

2019-12-12 Thread cooing pop
test

2019년 12월 12일 목요일 오후 1시 56분 53초 UTC+9, cooing pop 님의 말:
>
> sometimes get Report ERROR: io.grpc.StatusRuntimeException: UNAVAILABLE: 
> 502:Bad Gateway
>
> and Web page access is intermittent.
>
> about this URL 
> 1. https://ads-developers.googleblog.com/search/label/google_ads_api
>
> 2. https://developers.google.com/google-ads/api/reference/rpc/
>
>
> I wonder if there is a system check or an internal network problem.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/68386aa0-eafe-45c3-872b-cec7f8d5715c%40googlegroups.com.


RE: Is there any problem in ads API

2019-12-12 Thread Google Ads API Forum Advisor Prod
Hello,

Thank you for reaching out to support. We are not aware of any known issues at 
this time. The error while querying for the API reports could be a transient 
issue and retrying the request with a backoff will usually work. Could you 
please give this a try? If you're seeing this issue, please share the request 
and response logs using Reply privately to author option to investigate further?

Regarding your second concern, I was able to check this internally with the 
team and they suspect that it is possibly a network issue. Could you try 
viewing the documentation on a different machine to see if this is 
reproducible? If it's only happening from one machine, then it may be 
environmental.

Regards,
Bharani, Google Ads API Team
ref:_00D1U1174p._5001UOENiZ: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/WoQQL0Q2EXX300RQfUJcvJRdmrI79ubyeghw%40sfdc.net.


Is there any problem in ads API

2019-12-11 Thread cooing pop
sometimes get Report ERROR: io.grpc.StatusRuntimeException: UNAVAILABLE: 
502:Bad Gateway

and Web page access is intermittent.

about this URL 
1. https://ads-developers.googleblog.com/search/label/google_ads_api

2. https://developers.google.com/google-ads/api/reference/rpc/


I wonder if there is a system check or an internal network problem.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9372c7fe-923a-490b-b311-01951703b952%40googlegroups.com.