Re: Adwords API in API Explorer

2015-06-11 Thread ApiUser18
Thanks for the fast response. We have just started to use and explore the Google Adwords API and want to make sure that we use it correctly and are not violating the policies by exceeding the rate limits. The limit of 10,000 operations a day seems to affect all requests.

Re: Keywords Performance Report Not Reading Keyword

2015-06-11 Thread Anthony Madrigal
Hello, This is an AdWords Scripts related question, not an AdWords API question. Could you please repost your question in the AdWords Scripts forum https://groups.google.com/forum/?utm_medium=emailutm_source=footer#!forum/adwords-scripts so that other Scripts users can refer to it if they are

Having issues with oauth token

2015-06-11 Thread Rob Hayes
I'll see if I can get enough detail in here. Please hit me with questions if I leave something out. I'm trying to move an application from using the ClientLogin to OAuth. No matter what I do, I always get this error back from the service. soap:Fault

Can't get The report when set clirntCustomerId to varable.

2015-06-11 Thread deadKenny2
Try to get Report for each company in MCC like this $cmps = file(dirname(__FILE__).'/../../../../companies.txt'); //print_r($cmps); foreach ($cmps as $i=$c){ list($cname,$cid) = explode(',',$c); $user = new AdWordsUser(); //print_r($cid); $user-SetClientCustomerId($cid); // Log

Authentication Service Account API AccessTokenRefreshError

2015-06-11 Thread tecnologia
Hi, I´m trying to authetica in Google Adwords API but I recive an error: oauth2client.client.AccessTokenRefreshError: access_denied: Requested client not authorized. This is my code: p12_file = os.getcwd() + '**.pem' service_account_email =

CustomerSyncService not showing changes

2015-06-11 Thread sebastian . lamelas
Hello, I want to use the CustomerSyncService to recover deleted AdGroupAd's. I am basically using a similar implementation as this one https://github.com/googleads/googleads-java-lib/blob/master/examples/adwords_axis/src/main/java/adwords/axis/v201409/accountmanagement/GetAccountChanges.java .

Re: mobile app/app category placements

2015-06-11 Thread Umesh Dengale
Hi Shailesh, Url field on placement is filterable https://developers.google.com/adwords/api/docs/reference/v201502/AdGroupCriterionService.Placement#type. Use that URL in a selector to get the placement associated with it. Thanks, Umesh Dengale, AdWords API Team. -- --

Re: Using chines and Arabic characters in keywords

2015-06-11 Thread Anthony Madrigal
Hi, You should be able to use characters such as Chinese and Arabic, but there are some restrictions on some UTF-8 characters. There is a matches regex https://developers.google.com/adwords/api/docs/reference/v201502/FeedItemService.Keyword#text to check if the keyword text is within the

Re: Exclude existing placement using api

2015-06-11 Thread Anash P. Oommen (AdWords API Team)
Hi Sailesh, You cannot add a placement as biddable and negative at the same time. Try removing the biddable placement first, and then add the same URL as negative placement. Cheers, Anash P. Oommen, AdWords API Advisor. On Thursday, June 11, 2015 at 2:16:35 AM UTC-4,

Using chines and Arabic characters in keywords

2015-06-11 Thread irishkabayan
I am trying to add keywords in the adgroup and have problem with some characters. Can I use all utf8 characters in the text of keywords? For example, chines or Arabic characters? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

Keywords Performance Report Not Reading Keyword

2015-06-11 Thread alexander . granola
Please take a look at the script below and let me know where i went wrong.. function main() { var ACCOUNTS = ['xxx-xxx-xxx']; var ADWORDS_REPORT = 'KEYWORDS_PERFORMANCE_REPORT'; var FILTER = 'Impressions 0'; var DATE_RANGE = 'LAST_30_DAYS'; var COLUMNS = [ 'AccountDescriptiveName'

Is it possible to page through report results?

2015-06-11 Thread Johnny
Is it possible to page through results from a report (for example the SQR)? I saw two relatively old posts about it. One

Rules for keywords

2015-06-11 Thread irishkabayan
Hello! I try to add keywords in the adgroup. And i have a question: can i use all utf8 characters in the text of keywords? For example, chinese characters or arabic. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

Ref Error in Keywords_Performance_Reports

2015-06-11 Thread Evan Nichols
function main() { var ACCOUNTS = ['795-463-4220']; var ADWORDS_REPORT = 'KEYWORDS_PERFORMANCE_REPORT'; var FILTER = 'Impressions 0'; var DATE_RANGE = 'LAST_30_DAYS'; var COLUMNS = [ 'AccountDescriptiveName' ,'Date' ,'CampaignName' ,'AdGroupName' ,'Keywordtext'

Rules for keywords

2015-06-11 Thread irishkabayan
Hello! I try to add keywords in the adgroup. And i have a question: can i use all utf8 characters in the text of keywords? For example, chines or arabic characters. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

Paging through report results

2015-06-11 Thread Johnny
Is it possible to page through results from a report (for example the SQR)? I saw two relatively old posts about it. One

Re: Problem with adgroupBidModifier - Get a value but when trying to use opreation set get exception No existing bid modifier for AdGroupId

2015-06-11 Thread Jiaxin Shan
I create a adgroup but I don't know why it has a default mobile bid modifier -22%. I can get this result from search, if I found. It said. No existing bid modifier. ?xml version=1.0 encoding=UTF-8?soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/;

AccountTimeZoneId doesn't take into account Daylight saving time

2015-06-11 Thread Dzmitry Hancharou
Hi, From my account I see in Account preferences: Time zone (GMT+02:00) Berlin But when I try getting an ad performance report, I have AccountTimeZoneId = (GMT+01:00) Berlin Actually, Daylight saving time in Berlin, therefore GMT+02:00 is correct. How to handle timezones properly? Thanks,

Re: Can't get The report when set clirntCustomerId to varable.

2015-06-11 Thread Umesh Dengale
Hello, Please make sure value of variable is properly formatted (e.g., trimmed, no trailing newlines, quotes, etc.). Please use var_dump ($cid) to get more details. Cheers, Umesh Dengale, AdWords API Team. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and

Re: Authentication Service Account API AccessTokenRefreshError

2015-06-11 Thread Anash P. Oommen (AdWords API Team)
Hi, What scope are you using when authorizing the impersonation email on the Google Apps dashboard? The API scopes changed a while back, that might be the issue. See https://developers.google.com/adwords/api/docs/guides/authentication#scope for details. Cheers, Anash P. Oommen AdWords API

Re: AccountTimeZoneId doesn't take into account Daylight saving time

2015-06-11 Thread Anash P. Oommen (AdWords API Team)
Hi Dzmitry, That's working as designed. The field doesn't automatically adjust to Daylight savings time, it simply gives you the timezone that was provided when the account was created. I'll make sure this is documented properly. I think you could use a library like Joda

Re: Adwords API in API Explorer

2015-06-11 Thread Umesh Dengale
Hello, The rate limit guide https://developers.google.com/adwords/api/docs/guides/rate-limits?hl=en you referenced has some information about upgrading your account access level. I recommend applying for standard access by filling out this standard access account form

An error has occurred: SOAP-ERROR: Parsing WSDL:

2015-06-11 Thread Shobhan Babu
Hi, We have shifted our website godaddy to Microsoft Azure ,is there any settings that we need to change it in the azure cloud. when we tried in the godaddy hosting ,it gives me no error while using the google adwords API,but when we use the same files on azure I am getting SOAP-Errors ,what

Re: Parsing WSDL error

2015-06-11 Thread Дмитрий Сидоров
Sorry for delay sidr@1ps ~ $ traceroute adwords.google.com traceroute to adwords.google.com (173.194.71.50), 30 hops max, 60 byte packets 1 92.53.107.9 (92.53.107.9) 3.017 ms 3.236 ms 3.230 ms 2 bm18-1-gw.spb.runnet.ru (194.190.254.69) 0.463 ms 0.694 ms 0.692 ms 3

Exclude existing placement using api

2015-06-11 Thread shailesh . ingole
Hi, I want to exclude existing placement(biddable) using api, but it gives me CANNOT_TARGET_AND_EXCLUDE error. How should I do this ?? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/

Used python v201502 the AdGroupService give me back the wrong microAmount

2015-06-11 Thread 258665116
https://lh3.googleusercontent.com/-V03dd5bzr6I/VXpRKhUyDbI/AAU/aY3xU2N3F9w/s1600/123123.jpg https://lh3.googleusercontent.com/-rcvU-a6qgsM/VXpQJI3-xmI/AAM/DyO-1XWww4A/s1600/.jpg first of all, I used AdGroupService api to update the adgroup's microAmount to '900'

Re: Exclude existing placement using api

2015-06-11 Thread shailesh . ingole
Thanks a lot Anash. Does the same applies to automatic placements or can I directly add them as negative. On Friday, June 12, 2015 at 1:39:44 AM UTC+5:30, Anash P. Oommen (AdWords API Team) wrote: Hi Sailesh, You cannot add a placement as biddable and negative at the same time. Try

Re: OPERATION_NOT_PERMITTED_FOR_REMOVED_ENTITY Bug?

2015-06-11 Thread Mark
1. So if the agreed-upon method of handling 'undelete' is to always rename to a never-to-be-used-again name before removing, then why don't I see it in the documentation somewhere? 2. If it's not possible to unremove an adgroup with the same name (either via an ADD or SET or otherwise), why is