Re: Adwords API Batch Jobs, XML SOAP

2018-06-15 Thread 'Milind Sankeshware (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi,

It seems like the error is with the platform from where you were calling 
the AdWords API. Could you please confirm if you are performing a Resumable 
Upload Could 
 
via 
Google Cloud? If yes, I found this post 
 about 
the error that might be helpful for you. If this post won't help you, I 
would suggest to reach out the Google Cloud Team through their support 
channels mentioned here . For more 
information, please refer the AdWords API SOAP request structure in this 
guide 

.

Thanks,
Milind, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/42583dbd-f0b6-4215-8f56-798c2068dc7b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Error when trying to make a new predicate to filter my Ad Performance Report

2018-06-15 Thread szusi
Hello,

While running an Ad Performance Report, I run into the following error when 
trying to make a new predicate:

Error:

Server error: `POST 
https://adwords.google.com/api/adwords/reportdownload/v201806` resulted in 
a `500 Internal Server Error` response

  


Fatal error: Uncaught exception 
'Google\AdsApi\AdWords\v201806\cm\ApiException' with message 'Temporary 
problem with the server. Please retry the request after a few moments' in 
/Users/SeanZusi/Downloads/googleads-php-lib-35.2.0tar/src/Google/AdsApi/AdWords/Reporting/v201806/ReportDownloader.php:240

Stack trace:

#0 
/Users/SeanZusi/Downloads/googleads-php-lib-35.2.0tar/src/Google/AdsApi/AdWords/Reporting/v201806/ReportDownloader.php(126):
 
Google\AdsApi\AdWords\Reporting\v201806\ReportDownloader->makeReportRequest(Array)

#1 
/Users/SeanZusi/Downloads/googleads-php-lib-35.2.0tar/adwords-examples-35.2.0/examples/AdWords/v201806/Reporting/downloadcriteriareportwithselector.php(93):
 
Google\AdsApi\AdWords\Reporting\v201806\ReportDownloader->downloadReport(Object(Google\AdsApi\AdWords\Reporting\v201806\ReportDefinition),
 
Object(Google\AdsApi\AdWords\ReportSettings))

#2 
/Users/SeanZusi/Downloads/googleads-php-lib-35.2.0tar/adwords-examples-35.2.0/examples/AdWords/v201806/Reporting/downloadcriteriareportwithselector.php(117):
 
Google in 
/Users/SeanZusi/Downloads/googleads-php-lib-35.2.0tar/src/Google/AdsApi/AdWords/Reporting/v201806/ReportDownloader.php
 
on line 240

The predicate I am trying to add is as follows: new Predicate('AverageCpc', 
PredicateOperator::GREATER_THAN_EQUALS, ['100']). Please let me know 
what the best way to resolve this issue is.

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/ebfe160c-2a93-4563-b806-50c28958eb28%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Add new email to campaign list

2018-06-15 Thread 'Teja Makani' via AdWords API and Google Ads API Forum
Hello Tarun,

It looks like you are trying to add audience to your campaign. It is a 2 
step process please find my response below:

   1. You need to create a CRM based user list which contains all the 
   emails that you want to upload to the user list. You could use the
AddCrmBasedUserList.java 
   

 in 
   Java to add the emails. You can refer the code samples in other languages 
   here . 
   Please note that an audience list must have at least 1,000 active members 
   for ads to serve on Google Search, YouTube and Gmail. It takes almost 6 to 
   12 hours for the list to be populated with members. Also, you could see the 
   users lists under Audience lists of the Audience manager windows after 
   logging into your AdWords account. But you can not see the members(emails 
   Ids) of those lists due to the privacy policy. You could refer to this 
   guide  
   for 
   more details on user lists.
   
   2. After successfully populating the user list into the AdWords account, 
   you could use the mutate 
   

 operation 
   of CampaignCriterionService 
   

 and 
   set the Criterion type 
   

 as 
   USER_List. Likewise, you could use mutate 
   

 operation 
   of AdGroupCriterionService 
   

 and 
   set criterion type  
   
as
 
   USER_LIST. You could also refer this guide 
    to add that 
   user list to target your campaign/AdGroup manually.

If your question is different? please elaborate the scenario and let me 
know if you have any further questions.

Regards,
Sai Teja, AdWords API Team. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/c9b51b27-6300-4e28-abf9-bc499582098b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Why I can't see the UserList that I created with Adwords API in Adwords UI?

2018-06-15 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Avia,

There are a few caveats while uploading CRM data. After you've uploaded 
your customer list of email addresses and/or phone numbers, AdWords will 
compare each hashed string on your list with the hashed string for email 
address or phone number of Google accounts. If there's a match, Google adds 
the corresponding Google account to your Customer Match audience 
 
(Customer 
list). It takes 6 to 12 hours for a list to be populated with members. To 
find the other caveats, please refer this 

 section 
of the guide. Are you not able to see the user list created by the API in 
the UI? If so, could you share the SOAP logs of the API operation along 
with your client customer Id? Please use reply *privately to author* while 
sharing the logs.

Regards,
Dhanya, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7f70c596-3482-4fa1-9153-05c3be8de79f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AWQL - How to properly use a list as predicates values (Python)?

2018-06-15 Thread 'Teja Makani' via AdWords API and Google Ads API Forum
Hello Matthias, 

Glad that you were able to resolve the issue. I will share your feedback 
with the team. 

Regards, 
Sai Teja, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/8a4d58a4-133b-4c4b-b4ab-63d4f56103d3%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Environment 'PRODUCTION' does not support version 'v201710'

2018-06-15 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi Jonathan,

Could you please confirm that while setting up the client library, you had 
followed the steps as mentioned in the README.md 
 file? 
If yes, then could you please run get_campaigns.rb 

 and 
reply back with complete SOAP logs and client customer id, so that I can 
troubleshoot further? You may opt to *reply privately to author*.  

Regards,
Dhanya, AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/21e59dab-9ec9-4b72-9577-4ca0a1f6d1cb%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Access and Rate Limtis

2018-06-15 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API and Google Ads API Forum
Hello, 

Please find my response below:

1. What is the best practice for accessing many different adwords accounts? 
Multiple service accounts? Giving an email address access to each account?
Are you referring to accessing multiple accounts through the API? If so, 
you will need to set up OAuth2 credentials by following the steps mentioned 
this 
guide . 
Make sure to generate the credentials by logging in with the same email 
address that you want access to and must belong to a valid AdWords account 
user. This way, OAuth2 enables the AdWords API client app to access a 
user's AdWords account without having to handle or store the user's login 
info. If a single user needs access to multiple accounts, that user will 
have to be added to each account. Also API and UI shares the same access 
for a given user.

2. What are the actual rate limits (if any) on AdWords API calls?
AdWords uses a Token Bucket 

 algorithm 
to meter the requests and determine the queries per second (QPS) rate. The 
rate limits can fluctuate based on different variables, including server 
load at the time when you are making the calls. At any point the API will 
trigger the RATE_EXCEEDED error which indicates that the application need 
to slow down with the number of requests. If you're receiving the 
RATE_EXCEEDED error with RateScope as ACCOUNT, it means that the 
application is making a high number of requests per second against a single 
AdWords account and they will need to slow down. If you are receiving the 
RATE_EXCEEDED error with RateScope as DEVELOPER, they will need to monitor 
the number of requests made against the developer token that is triggering 
the error. Please check this guide 
 for 
more information on rate limits.

Let me know if you have any other questions.

Regards,
Bharani, AdWords API Team

>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/88e48d18-6f2b-4e79-ba5d-3a59e4b19441%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Adwords API Batch Jobs, XML SOAP

2018-06-15 Thread jack . e . perry4
Hello!

So I am using XML SOAP directly, no client library. I am trying to obtain 
the resumable URL for my batch job that is created. I post an empty HTTP 
Request but keep receiving an error about my signature.

Here is my request: 
function getResumableUrl(uploadUrl) {
  var authToken = findAccessToken();
  var xml =  'http://schemas.xmlsoap.org/soap/envelope/; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;>' +
 '' +
   'https://adwords.google.com/api/adwords/cm/v201806; 
soapenv:actor="http://schemas.xmlsoap.org/soap/actor/next; 
soapenv:mustUnderstand="0">' +
 'INSERT HERE' +
 'INSERT HERE' +
 'Batch Job Resumable Test' +
 'false' +
 'true' +
   '' +
'' +
  '' +
'' +
  '';
  

  var headers = {
"content-type": "application/x-www-form-urlencoded",
 "x-goog-resumable": "start",
 "expires": test
};
  
  var options = {
"Authorization": "Bearer " + authToken,
"Content-Length ": 0,
'Method': "post",
'headers': headers,
muteHttpExceptions: true,
payload: xml
  };
  Logger.log(uploadUrl);
  var response = UrlFetchApp.fetch(uploadUrl, options);
  Logger.log(response);
}

Here is the response: 
SignatureDoesNotMatchThe 
request signature we calculated does not match the signature you provided. 
Check your Google secret key and signing method.POST

application/x-www-form-urlencoded
1529679903
x-goog-resumable:start
/batch-job-upload-prod-ebe9b43/273175195/763146464.operations.xml

I have tried so many different variations and have read through all of the 
documentation. Does anyone see anything that is triggering this? Thank you 
so much!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/cbfc7226-9731-4711-ae7b-ddc5bf7821b0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Finding Cost Per Click with API Reporting

2018-06-15 Thread szusi
Thanks for the reply! If I wanted to filter my report to only show ads that 
were above a certain AverageCPC, how would I go about doing that?

On Thursday, June 14, 2018 at 1:38:39 PM UTC-6, sz...@mymail.mines.edu 
wrote:
>
> Hello, 
>
> While looking through the reports at 
> https://developers.google.com/adwords/api/docs/appendix/reports/all-reports, 
> I noticed that there was no usable metric for Cost Per Click. I am setting 
> up an Ad Performance Report and what wondering is there is any way to get 
> this statistic. 
>
> 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/8109ded7-be84-4cd2-98b3-204b436e2569%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: MCC account

2018-06-15 Thread markreed100
i can use mmc acct, i have know ideal why :((

On Thursday, 14 June 2018 13:43:53 UTC-7, API_DCH wrote:
>
> Hi,
>
> If I request to add my email address that belong to a MCC account with 
> "Standard" access. 
>
> Can I  still use the same email address as developer contact in the API 
> application under the “API Center”
>
> Please let me know.
>
> Thanks
> Sam  
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5230373d-bef6-4f88-a53e-3bd76479d89f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Rate Limit and MCC Account

2018-06-15 Thread youngho.kim via AdWords API and Google Ads API Forum
1. What are the actual rate limits (if any) on AdWords API calls?

2. What is the best practice for accessing many different adwords accounts? 
Multiple service accounts? Giving an email address access to each account?

-- 
---
essenceglobal.com 

Facebook 
 • Twitter 
 • YouTube 
 • Instagram 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/7436bf0d-d3d4-45aa-8bba-d24a0b560cd1%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Add new email to campaign list

2018-06-15 Thread tarun . jain
Hi,

I want to add the array of emails to a particular campaign. How can I do so?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/38209b98-9c82-4435-a9b7-c8aa3bc4f301%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Test

2018-06-15 Thread 'Josh Fyne' via AdWords API and Google Ads API Forum
Test
-- 
---
essenceglobal.com 

Facebook 
 • Twitter 
 • YouTube 
 • Instagram 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5fc55a3b-bfce-43ed-b59a-c64a3e6ea8da%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Rate Limit and MCC Account

2018-06-15 Thread youngho.kim via AdWords API and Google Ads API Forum
1. What is the best practice for accessing many different adwords accounts? 
Multiple service accounts? Giving an email address access to each account?

2. What are the actual rate limits (if any) on AdWords API calls?

-- 
---
essenceglobal.com 

Facebook 
 • Twitter 
 • YouTube 
 • Instagram 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/73573ae7-7d5b-41fa-9956-fe01d6c988cf%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Environment 'PRODUCTION' does not support version 'v201710'

2018-06-15 Thread j6
Just now setting up the example Rails app for the Google AdWords API 
 and I'm getting the 
error in the title. How do I use the current/supported version?

Error originates from  on the line that checks the 
version number 

I suspect I am missing something basic, but I have found no similar 
question in the forums or documentation. 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/f98bb4e0-d5f8-43d9-bb07-9e1ddf2fc88a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Why I can't see the UserList that I created with Adwords API in Adwords UI?

2018-06-15 Thread avia.zharia via AdWords API and Google Ads API Forum
Hey,
I am trying to create a CRM-based user list, add emails to this list 
according to the following documentation:
https://developers.google.com/adwords/api/docs/samples/java/remarketing#create-and-populate-a-user-list

I have two problems:
1. When I retrieve the user list after adding 1,200 members, the size is 
zero even though I added friends and waited a few hours for the list to 
update.
2. I can not see the user / audience list in the AdWords UI

* I want to use the "UserList" for targeting YouTube members by their 
emails.

How can I solve these problems?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/27b813da-472f-4393-a2ea-5c8683fb651d%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Access and Rate Limtis

2018-06-15 Thread youngho.kim via AdWords API and Google Ads API Forum
1. What is the best practice for accessing many different adwords accounts? 
Multiple service accounts? Giving an email address access to each account?

2. What are the actual rate limits (if any) on AdWords API calls?

-- 
---
essenceglobal.com 

Facebook 
 • Twitter 
 • YouTube 
 • Instagram 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/2ddf8a0f-422e-43f6-be75-c925c9bc45d7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


AdsCommon::Errors::Error in AccountController#index \\ Environment 'PRODUCTION' does not support version 'v201710'

2018-06-15 Thread j6
Just getting started with AdWords API and get this error on my local 
instance. How do I use the most recent/supported version? 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/3bc9d3bf-ef96-43d1-b20f-fcbac9f46d26%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I have a few questions about criteria. 1: In shopping ads, how do I set dimensions such as gender, agerang, interested, etc? Can it be set with adword api?

2018-06-15 Thread 'Dannison Yao (AdWords API Team)' via AdWords API and Google Ads API Forum
Hi,

Upon further investigation, I was able to replicate this on my end and 
there is indeed a discrepancy with the information provided in this table 
 
provided 
in the documentation from the API. The CriterionUserList should be 
supported for the shopping campaign. However, the Gender, AgeRange, and 
CriterionUserInterest are still not supported in the shopping campaign. 

Allow me to coordinate this with the team. Thank you for pointing it out. 
Let me know if you have further clarifications.

Regards,
Dannison
AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a5955d47-b3a4-4f47-bc32-085d04186ff7%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: AWQL - How to properly use a list as predicates values (Python)?

2018-06-15 Thread Matthias Baader
Hi Sai Teja,

thank you for your answer, which unfortunately didn't help me at all.
After many hours of trial and error (and I tried everything like str(), 
rep(), tuple(), for ... inside the .In() or in seperate variables or defs), 
I finally found the solution. It's called "unpacking argument-lists" in 
Python and "splat" in Ruby or Perl:
https://docs.python.org/3/tutorial/controlflow.html#unpacking-argument-lists

This is what the correct code looks like:
campagin_ids = [1435278870, 2345678901, 3456789012]  
query = (adwords.ServiceQueryBuilder()
  .Select('Id', 'Status')
  .Where('BaseCampaignId').In(*campaign_ids)#Pay attention to the asterisk 
"*" in front of the object!
  .Build())


To be honest, I wonder why you couldn't call this solution. This is 
certainly a problem that everyone will encounter sooner or later if they 
want to use the AdWords-API. In my opinion, this should be prominently 
featured in the AWQL documentation.

Best regads
Matthias



It's hard to believe that there is no

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/95e980e6-2535-4496-99f9-68e2d8c680c5%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: I have a few questions about criteria. 1: In shopping ads, how do I set dimensions such as gender, agerang, interested, etc? Can it be set with adword api?

2018-06-15 Thread jia zheng
In fact, I was able to use the API to set CriterionUserList, as well as 
negative keywords. Consistent with adword UI. But I don't understand why 
the guidelines are inconsistent with reality.

在 2018年6月15日星期五 UTC+8下午1:22:10,Dannison Yao (AdWords API Team)写道:
>
> Hi,
>
> The error OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE 
> 
>  is 
> encountered when you are doing an operation that is not permitted for that 
> certain campaign type. Unfortunately, for shopping campaigns, you cannot 
> set the Gender, AgeRange, CriterionUserInterest, and CriterionUserList 
> demographics using the API as referenced in this guide 
> .
>
> Let me know if you have further clarifications.
>
> Regards,
> Dannison
> AdWords API Team
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4f751e02-b4c4-4044-b4da-1b58ed5ec195%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.