Get refresh token

2019-05-27 Thread 'Jessie' via AdWords API and Google Ads API Forum
Hi,

I'm currently doing migration of AdWords api to GoogleAds api. Using the 
library below, I'm able to refresh the token with a single method.

*import com.google.api.client.googleapis.auth.oauth2.GoogleCredential;*

// Create object
GoogleCredential.Builder credentialBuilder = new 
GoogleCredential.Builder().setJsonFactory(JSON_FACTORY).setTransport(HTTP_TRANSPORT).setClientSecrets("CLIENT_ID",
 
"CLIENT_sECRET");

// Refresh token using the method
credential.refreshToken()

// Obtain Access Token and refresh token
credential.getAccessToken()
credential.getRefreshToken()


How can I implement the above code using the library below.

import com.google.api.client.auth.oauth2.Credential;
import com.google.api.ads.common.lib.auth.GoogleClientSecretsBuilder;



Thanks,
Jessie

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3fe6ed4d-ad11-4e10-8d17-30fc977234f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: RE: Conversion Repeat rate?

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi Thomas,

We currently do not have a roadmap for future features. As of now, only our 
blog is our best source for any updates or announcements.

Thanks and regards,
Peter
Google Ads API Team
ref:_00D1U1174p._5001UAqiyP: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.
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/XeIud0PS72Y400D5JAs4eLQ6q6QfObl6DxsA%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


Re: Get a list of all the accounts that is accessible by the MCC account which my user has access to.

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi,

Sorry for the inconvenience this may have caused. The Standard Access level has 
a limit of 1000 get requests per day as per this guide. The limit will reset a 
little over 24 hours before you can start making GET request again in the API. 
However, if you think that you are encountering this error more frequently than 
often, feel free to open your request and we will be happy to investigate it 
further for you.

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UAqiuI: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.
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/FjWtl0PS72C300Dq1-qKxHS9O4b2ME9yxRQQ%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


RE: new AdWords API, ClickConversion conversion_action how to specify?

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi,

I am a colleague of Dave, allow me to provide support for your concern. Sorry 
for the delayed response, my colleague was able to respond to you privately. 
However, it seems that the response did not reach you. Kindly refer to the 
response below.

The format of the resource name you need as a parameter for 
ConversionActionService.GetConversionAction() method is 
customers/{customer_id}/conversionActions/{conversion_action_id}. You could get 
the conversion_action_id by using GAQL query to get from conversion_action 
resource.

Sample query:
SELECT conversion_action.id FROM conversion_action.

After fetching the conversion_action.id, you may then use it to get the 
conversion action. Feel free to write back if you have further clarifications.

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UAq7Dn: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.
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/Gg46F0PS712K00MZjKuFrDT6OcyuTVWoEuwA%40sfdc.net.
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.


RE: TargetingIdeaService: flag keywords already in account

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi Nate,

Yes, the IdeaTextFilterSearchParamater can only accommodate up to 200 
(included/excluded) keywords per request. So processing all your keywords would 
require you to make quite a number of requests.

As for extracting your keywords, you should be able to use the Keywords 
Performance Report and use the IsNegative = True to extract those you have 
excluded.

As for the Account Status field in the Google Ads UI's Keyword Planner, I'm 
afraid that this is currently not supported. You may refer to this 
documentation for the available information that can be retrieved using the 
TargetingIdeaService. I hope this helps.

Thanks and regards,
Peter
Google Ads API Team
ref:_00D1U1174p._5001UAqiyA: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.
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/ANlit0PS5WF400kksGDmEUSaeJXjaYPhdVIg%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


Re: Report API - get one row for one group, not multiple rows

2019-05-27 Thread Chen k.


Hello Dannison,

Thanks for your reply.


Actually, I found the reason of this problem, in this link:

https://stackoverflow.com/questions/53650063/basic-awql-request-campaing-performance-split-by-date-only

It occurred because I ask the clicks and impressions from the 
KEYWORDS_PERFORMANCE_REPORT, so the results segmented by keyword.

I tried to get this metrics from ACCOUNT_PERFORMANCE_REPORT and the result 
came right!

But if I want to continue get the results from the 
KEYWORDS_PERFORMANCE_REPORT, what can I do? Do you have an idea?


Thank you for helping!



On Thursday, 23 May 2019 04:41:46 UTC+3, adsapiforumadvisor wrote:
>
> Hi,
>
> Thanks for reaching out. To better assist you, can you provide the 
> complete report definition you are using? A possible reason that I can 
> think on top of my mind is probably because you have other segment fields 
> besides the Date 
> 
>  segment. 
>
> Regards,
> Dannison
> Google Ads API Team
>
> ref:_00D1U1174p._5001UAqNRW: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.
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/00281157-b61e-47b7-b375-2e6ba7913fe7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Impressions Per Day in "Estimating Traffic" API

2019-05-27 Thread neetu varshney
Hello Team,
Greeting!!

As i am hitting "Estimating Traffic" API, and I am getting Impressions 
value 612114854 for a keyword.
I think its a very big digit as an impression,please tell me its right or 
we have to divide some number  form original number.

Thanks,
Neetu

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8c493ca1-8aa3-45c2-91db-c1445632fb21%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Get a list of all the accounts that is accessible by the MCC account which my user has access to.

2019-05-27 Thread cv
Hi Dannison,

I am doing operations with  Standard Access 

 developer 
token.
I am doing best practise as well ( I mentioned that I am doing a pagination 
size of 20 records with delay of 5 seconds on each page request), but the 
operation demand requires those limit, which is uncommon.

We can get all customers Info with 1 API call in Adwords API but here we 
required as many api calls as no of accounts.

error which I was getting
Status code: 8

"status": "RESOURCE_EXHAUSTED",

Details: Quota exceeded for quota metric 
'googleads.googleapis.com/get_requests' and limit 'GetsPerMinutePerProject' 
of service 'googleads.googleapis.com' for consumer 
'project_number:64XX109'.
Failure: {} 



Thanks,


On Monday, 27 May 2019 15:15:30 UTC+5:30, adsapiforumadvisor wrote:
>
> Hi,
>
> My apologies for the complications you may be encountering. 
> The RESOURCE_EXHAUSTED error does not provide a retryAfterSeconds value. 
> The reason you are encountering this is when you are hitting the Daily 
> API operation limits 
> 
>  
> or the Get requests 
> 
>  count. 
> You may consider applying for Standard Access 
> 
>  
> developer token or implement the best practices 
> 
>  
> to decrease the chance of encountering this error.
>
> Regards,
> Dannison
> Google Ads API Team
>
> ref:_00D1U1174p._5001UAqiuI: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.
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/d64e92d8-df60-4b03-bf41-439e5341901a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I always get RESOURCE_TEMPORARILY_EXHAUSTED when invoking MutateCampaignBudgets

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi Luca,

Although we do not have a specific period as to when the error can be lifted, 
it should normally take you 24 hours before the refresh and make your next API 
calls.

Should it be already more than that, you may send to me the generated JSON logs 
so I can further investigate. You may reply to me privately using the Reply 
privately to author option.

Thanks and regards,
Peter
Google Ads API Team
ref:_00D1U1174p._5001UAqixq: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.
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/ecHEq0PS5X4F00qupqxnA8SrOQQFax8kG60w%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


RE: Google Ads API reporting user location and cost

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi Bruno,

Thank you for contacting support, you may refer below for my answers to your 
questions :

1. I cannot retrieve metrics.cost_micros and metrics.impressions from 
click_view. (most important one)

I'm afraid that these metrics are indeed not supported for in Click View. You 
may follow our blog for updates.

2. The date range should not be older than 90 days and should be segmented by 
day.

This too has been the standard since the old API. In the old (click) report, 
the available duration can only be up to 90 days from the date of your (report) 
request and you may only specify a date range for a single day only.

Best regards,
Peter
Google Ads API Team
ref:_00D1U1174p._5001UAqixl: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.
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/bFez70PS5WWO00kIGD8HoQQOOQtJOMsayV_w%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


RE: Conversion Repeat rate?

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi Thomas,

Thank you for reaching out. I could see that you want to fetch the conversion 
repeat rate using Google Ads API, but I'm afraid this is not yet supported. In 
the Google Ads API, you can find here the list of metrics fields that you can 
pull as of the moment.

For now, you may keep an eye on our blog for the latest updates.

Best regards,
Peter
Google Ads API Team
ref:_00D1U1174p._5001UAqiyP: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.
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/v1nAq0PS5VNH00pdYhNCbyTFWY_sBlEv2kfQ%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


Re: How to get repeat rate in conversion

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi Thomas,

Thanks for your reply.

I am afraid that it is not possible to use the other signals that are available 
to calculate conversion repeat rate.

Please let me know if you have further questions/clarifications.

Regards
Ejay
Google Ads API Team
ref:_00D1U1174p._5001UAqDV0: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.
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/ImnRe0PS5UZF00M2UrDdczSxW2LZ0_KCJwuw%40sfdc.net.
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.


Re: I always get RESOURCE_TEMPORARILY_EXHAUSTED when invoking MutateCampaignBudgets

2019-05-27 Thread Luca Sembolini
Hi,
thanks for the answer, I understood that the problem is my basic access 
token because i can do more than the 1 request per day. The only 
problem is that even if today is a brand new day my first request failed 
with the same error. So my new question is: does this limit really reset 
overnight or it reset in a long period of time?

Thank you in advance

Il giorno lunedì 27 maggio 2019 12:13:04 UTC+2, adsapiforumadvisor ha 
scritto:
>
> Hi Luca,
>
> Thank you for reaching out. The RESOURCE_TEMPORARILY_EXHAUSTED 
> 
>  error 
> occurred because you have reached your basic access operations quota or 
> exceeded your rate limit. For more information, you may check the API 
> Limits and Quotas  guide. To fix this, I would suggest 
> that you check out this guide 
> 
>  about 
> rate limits and follow the recommended practices to reduce the chances of 
> exceeding rate limits.
>
> You may also opt to upgrade to standard access 
>  so you can 
> make unlimited number of operations. To learn more you may refer to our rate 
> sheet .
>
> Thanks and regards,
> Peter
> Google Ads API Team
>
> ref:_00D1U1174p._5001UAqixq: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.
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/f4c66394-234b-453d-808c-a28d7f22e6ef%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: How do I get Day wise breakdown of Metrics like Clicks, Impressions, CTR etc related to campaigns?

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for reaching out. To be able to segment the results per day, you 
would need to add the segments.date field on your SELECT statement. Could you 
try this and confirm if you will get the results you are looking for?

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UAqiyF: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.
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/J1pQZ0PS5TD400yWaRWgn-SrWuyk31IYtm6A%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


RE: About top and absolute top metrics

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi Seungha,

Thank you for reaching out. I could see that you want to pull the said metrics 
in order to add it to your formula. Unfortunately, there is no direct way of 
doing this via the API. The API can fetch these impressions but then you would 
have to create your own implementation on how you would put the data in your 
formula.

Upon checking, these impressions can be pulled using Google Ads API reporting 
on the following resources: ad_group, campaign, keyword_view.

Here is a sample query:

SELECT metrics.top_impression_percentage, 
metrics.absolute_top_impression_percentage, 
metrics.search_absolute_top_impression_share, 
metrics.search_top_impression_share FROM *resource_name*

I also cannot comment whether the implementation you described would be 
supported in later versions. For now, you may follow our blog for any updates.

Thanks and regards,
Peter
Google Ads API Team
ref:_00D1U1174p._5001UAqixv: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.
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/6n4D20PS5S30002UksVHidSt-hQzBrAa0DCw%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


RE: Two Step Authentication error from gapi SDK

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi,

The error AuthorizationError.TWO_STEP_VERIFICATION_NOT_ENROLLED occurs when the 
account is on two step authentication but the refresh token being used does not 
belong to an email which is setup for 2-Step authentication. Are you added as a 
user on the Google Ads account or are your API calls authorized by a user who 
has access to the target account?

If it is the second case, that user who authorized the API call and generated 
the authorization code should also have their Google accounts enrolled in 
2-Step Verification. If you are directly a user on the account, and have 
already enrolled for 2-Step verification, can you confirm the Google Ads email 
account which you are making the API call? You may use the reply privately to 
author option.

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UAqiy0: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.
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/pi9f50PS5S2Z00NHwUifNBS5KW_IFaxy5GVg%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


RE: Query returns 'null' with 'segments.date' in SELECT but works fine without it

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi Rohith,

Thank you for reaching out. So I can further investigate the issue as to why 
your account is getting null values, could you provide to me your 
clientCustomerId and also the time range you specified when you generated the 
report?

You may reply privately using the Reply privately to author.

Thanks and regards,
Peter
Google Ads API Team
ref:_00D1U1174p._5001UAqixg: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.
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/8MM_x0PS5RR0003D6UMhqURpKYWfvQAoG_2w%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


DEVELOPER_TOKEN_NOT_APPROVED

2019-05-27 Thread Ankit Agarwal
I am trying to make a campaign *budget* on my *TEST ACCOUNT* (in 
development mode). As mentioned in the doc the manager developer token 
gives us access to create ads using a test account. 
[{:field_path=>"", :trigger=>"", 
:error_string=>"QuotaCheckError.DEVELOPER_TOKEN_NOT_APPROVED", 
:api_error_type=>"QuotaCheckError", 
:reason=>"DEVELOPER_TOKEN_NOT_APPROVED", :xsi_type=>"QuotaCheckError"}]
Where am I going wrong?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d9d127cb-eeff-47ef-b275-33c300b082d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


RE: I always get RESOURCE_TEMPORARILY_EXHAUSTED when invoking MutateCampaignBudgets

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi Luca,

Thank you for reaching out. The RESOURCE_TEMPORARILY_EXHAUSTED error occurred 
because you have reached your basic access operations quota or exceeded your 
rate limit. For more information, you may check the API Limits and Quotas 
guide. To fix this, I would suggest that you check out this guide about rate 
limits and follow the recommended practices to reduce the chances of exceeding 
rate limits.

You may also opt to upgrade to standard access so you can make unlimited number 
of operations. To learn more you may refer to our rate sheet.

Thanks and regards,
Peter
Google Ads API Team
ref:_00D1U1174p._5001UAqixq: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.
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/xMIQa0PS5R1H00S4OjGNoASTGv8EuUxU6Uow%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


RE: Get a list of all the accounts that is accessible by the MCC account which my user has access to.

2019-05-27 Thread Google Ads API Forum Advisor Prod
Hi,

My apologies for the complications you may be encountering. The 
RESOURCE_EXHAUSTED error does not provide a retryAfterSeconds value. The reason 
you are encountering this is when you are hitting the Daily API operation 
limits or the Get requests count. You may consider applying for Standard Access 
developer token or implement the best practices to decrease the chance of 
encountering this error.

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UAqiuI: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.
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/4ZjQ30PS5PRJ00dnrSd0LNRE-be5eMpSdaDw%40sfdc.net.
For more options, visit https://groups.google.com/d/optout.


Re: new AdWords API, ClickConversion conversion_action how to specify?

2019-05-27 Thread Oleksandr Dyklevych
Is there any update on the topic?
What is the best way to proceed?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/89ec336c-2326-4885-ac62-1cf0bf09cf7d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How to get repeat rate in conversion

2019-05-27 Thread 'Thomas Lin' via AdWords API and Google Ads API Forum
Hi Ejay, is there any way that we can use the signals that are currently 
available to calculate that?

Thanks,
Thomas

On Tuesday, May 21, 2019 at 3:45:36 PM UTC+8, adsapiforumadvisor wrote:
>
> Hi Thomas,
>
> Thanks for reaching out.
>
> Unfortunately, it's currently not possible to get the conversion repeat 
> rate via the AdWords API.
>
> Please follow our blog 
>  for 
> any announcements or updates.
>
> Regards,
> Ejay
> Google Ads API Team
>
>
> ref:_00D1U1174p._5001UAqDV0: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.
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/e636a83b-2b8e-484f-8807-da659e5052f5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Conversion Repeat rate?

2019-05-27 Thread 'Thomas Lin' via AdWords API and Google Ads API Forum
Hi Team,

I'd like to know how we can fetch the conversion repeat rate using the 
Google Ads API or how we can use other signals to calculate it, as it seems 
like it's not available through the current API.

Thanks,
Thomas

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d8ae5f15-b570-4d34-83ad-885243bd91e8%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.


Two Step Authentication error from gapi SDK

2019-05-27 Thread access access
Hello!

Just recently we've been receiving errors in our app from the google api 
for two step authentication:
AuthorizationError.TWO_STEP_VERIFICATION_NOT_ENROLLED 
>From my understanding the MCC account has to have two step verification in 
order to access it's accounts. 
https://ads-developers.googleblog.com/2018/08/multi-factor-authentication-policy-for.html

Both the ads MCC and the account do not have two step enabled and prior to 
this message ( a day or two ago ) and was not an issue and created no 
errors. 
I was wondering what could have changed in order to get this error and how 
one would resolve / provide a good user experience to the authenticated 
user other then throwing them an error. 

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/6b264919-2d4a-4c06-a8e4-73edcfc7a0c4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Google Ads API reporting user location and cost

2019-05-27 Thread Bruno B. Correa

Hi everybody. 

I have been studying the new Ads API to extract campaign and clicks related 
data which i will use to create internal reports.

My main interest is to segment my query by a date range and retrieve 
information such as campaign, location of presence (user) and cost. 
Something similar to a User locations report that can be generated on the 
interface.

At first I had created the following query:

SELECT
customer.descriptive_name,
campaign.id,
campaign.name,
segments.geo_target_county,
segments.geo_target_city,
segments.date,
segments.device,
customer.currency_code,
metrics.clicks,
metrics.cost_micros,
metrics.impressions
FROM
geographic_view
WHERE
segments.date >= '2019-02-01'
AND segments.date < '2019-03-01'
ORDER BY metrics.clicks DESC


I realized segments.geo_target_county does not represent user location. So, 
looking into the documentation I think i should use 
click_view.location_of_presence.country instead and for this I created the 
new query.

SELECT
customer.descriptive_name,
campaign.id,
campaign.name,
click_view.location_of_presence.country,
click_view.location_of_presence.city,
segments.date,
segments.device,
customer.currency_code,
metrics.clicks,

   
* metrics.cost_micros,metrics.impressions*

FROM
click_view
WHERE
*segments.date >= '2019-02-01'*

*AND segments.date < '2019-03-01'*

ORDER BY metrics.clicks DESC


Here I found 2 problems:

   1. I cannot retrieve *metrics.cost_micros *and metrics.impressions from 
*click_view. 
   (most important one)*
   2. The date range should not be older than 90 days and should be 
   segmented by day.


Any ideas on how to solve or work around this?
A query for the ads API capable to retrieve the data from a User locations 
report  
also would be very helpful.

Thanks for the help ;)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ee9f4625-5a52-4a80-bb43-50b706fa3810%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How do I get Day wise breakdown of Metrics like Clicks, Impressions, CTR etc related to campaigns?

2019-05-27 Thread anirudh maddy
What should be the order by query term to break down the results day wise?


Here is what I tried :

 
SELECT  campaign.name, customer.currency_code, metrics.impressions, metrics.
clicks, metrics.ctr, metrics.average_cpc, metrics.average_position, metrics.
all_conversions , metrics.cost_per_conversion   
,metrics.cost_per_all_conversions 
FROM campaign WHERE segments.date DURING LAST_30_DAYS  ORDER BY 
campaign.start_date 
ASC

With the above query, I'm getting data which is grouped on a campaign 
level. How can I break it down to each 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/ed7d218f-ae75-47f1-9f2b-6c721e341edc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Query returns 'null' with 'segments.date' in SELECT but works fine without it

2019-05-27 Thread Rohith Balaji
Hey,

I am using the Python SDK for Google Ads API V1  to query the metrics of a 
campaign like 

query = ('SELECT campaign.id, campaign.name, campaign.status, 
campaign_budget.amount_micros, '
 'metrics.impressions, metrics.clicks, metrics.cost_micros, 
metrics.ctr, metrics.average_cpc, '
 'metrics.average_cpe, metrics.average_cpv, 
metrics.average_cpm, metrics.bounce_rate, metrics.conversions '
 'FROM campaign WHERE segments.date DURING %s AND campaign.id = 
%s '
 'ORDER BY metrics.impressions DESC ' % (time_range, 
campaign_id))

response = ga_service.search(customer_id, query, page_size=page_size)

It works fine.

But, When I query with segments.date in SELECT, it returns null

This returns null. I am not sure Why.

query = ('SELECT campaign.id, campaign.name, campaign.status, 
campaign_budget.amount_micros, *segments.date, *'
 'metrics.impressions, metrics.clicks, metrics.cost_micros, 
metrics.ctr, metrics.average_cpc, '
 'metrics.average_cpe, metrics.average_cpv, 
metrics.average_cpm, metrics.bounce_rate, metrics.conversions '
 'FROM campaign WHERE segments.date DURING %s AND campaign.id = 
%s '
 'ORDER BY metrics.impressions DESC ' % (time_range, 
campaign_id))

response = ga_service.search(customer_id, query, page_size=page_size)

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/cc98a23f-3f85-495b-b128-a174765e6c5e%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.


TargetingIdeaService: flag keywords already in account

2019-05-27 Thread Nate Mcghie
Hello,

I am using the TargetingIdeaService to generate new keyword ideas and I 
want to flag (or exclude) the keywords that already exist in my account. 
I looked at using the IdeaTextFilterSearchParameter 
,
 
which can be used to specify the keywords that you would want to exclude 
from your suggested ideas list (up to a maximum of 200 keywords). 
My account already contains thousands of keywords so this will not work for 
me (and I would rather have it automated than depend on manually extracting 
a list of keywords).

Is there some work-around to pull the 'Account Status' column that can be 
viewed using the Keyword planner tool? I couldn't find a corresponding 
attribute in the documentation. Screenshot attached.
If this is not possible; is there some workaround for excluding a large and 
dynamic list of keywords?

Thanks for any help!
 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/fe758ef7-246c-46b2-80e5-e16bda80f3b1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


I always get RESOURCE_TEMPORARILY_EXHAUSTED when invoking MutateCampaignBudgets

2019-05-27 Thread Luca Sembolini
Everything was working fine and now out of nowhere i get this error for 
every call i do. I don't think it's my problem because the code is the same 
some i would like to know what can be the cause of this error code.
I'm using the newest Google Ads API

Thank you

The log of the error is :

MethodName: 
google.ads.googleads.v1.services.CampaignBudgetService/MutateCampaignBudgets
Endpoint: googleads.googleapis.com:443
Headers: {developer-token=REDACTED, login-customer-id=2457285412, 
x-goog-api-client=gl-java/1.8.0_191 gapic/ gax/1.35.0 grpc/1.16.1}
Body: customer_id: "5422666172"
operations {
  create {
name {
  value: "TEMP BUDGET-1558701535949"
}
amount_micros {
  value: 2
}
delivery_method: STANDARD
  }
}


Response

Headers: 
Metadata(content-type=application/grpc,request-id=qByp03HamafJsel05irQ2Q,date=Fri,
 
24 May 2019 12:39:00 GMT,alt-svc=quic=":443"; ma=2592000; v="46,44,43,39")
Body: null
Failure message: errors {
  error_code {
quota_error: RESOURCE_TEMPORARILY_EXHAUSTED
  }
  message: "Too many requests. Retry in 30 seconds."
  trigger {
string_value: "Basic Access Operations Quota"
  }
}

Status: Status{code=RESOURCE_EXHAUSTED, description=Resource has been 
exhausted (e.g. check quota)., cause=null}.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c47f5b78-3719-4418-80c0-c991fa0eef61%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.