Re: CustomerSerivce getCustomers no such method (migrating 201605 to 201607)

2018-01-02 Thread asaad.awesat via AdWords API Forum
Hi vishal , this error not always reprduce , we didn't cathe this excption by debugging , it happens for our clients . Regards, Asad. On Thursday, January 5, 2017 at 9:54:22 PM UTC+2, Vishal Vinayak (Adwords API Team) wrote: > > Hi Raneen, > > I tried fetching the customer ID for an accoun

Re: Cannot retrieve Adwords Express Campaign from the API

2018-01-02 Thread 'Peter Oliquino' via AdWords API Forum
Hi Simon, If you wish to retrieve AdWords Express Campaigns via the AdWords API, then, I recommend that you refer to our blog post on how to setup the proper filters in order to successfully retrieve

Re: leaning

2018-01-02 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API Forum
Hi Sajjd, Welcome to AdWords API Forum! May I know exactly your concern in AdWords API so that I can help you? If you want to get started on learning the AdWords API, you may visit our official guide in this link for reference. Sho

Re: Missing data when downloading AdGroup Performance report

2018-01-02 Thread 'Peter Oliquino' via AdWords API Forum
Hi Angie, In order to better identify if there are indeed discrepancies between the AdWords API and AdWords UI reports, could you provide your clientCustomerId and the AdWords UI screenshot of the Ad Group level report that you were viewing? You may reply to me using the *Reply privately to aut

Re: Client Deleted error

2018-01-02 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Louis, The error means that your client ID in the Google API Console Credentials page was deleted or is not existing. However, since you confirmed that your OAuth2 client exists in the console, then can you provide to me your email add

Cannot retrieve Adwords Express Campaign from the API

2018-01-02 Thread Simon
Hello, As explained in the title, I am currently trying to retrieve informations about an Adwords Express campaign from the API but it does not seem to work at all. This campaign comes from another Managed Account and I can see on the Adwords homepage that I am getting this message: "Your Ad

adwords api problem for help ('cURL error 35: Server aborted the SSL handshake)

2018-01-02 Thread yuqilintest
hi,~ seek for help I attempt to use adwords api , and configue adsapi_php.ini in home dir, but when I execute $ php examples/AdWords/v201710/BasicOperations/GetCampaigns.php error occur: Fatal error: Uncaught exception 'GuzzleHttp\Exception\ConnectException' with message 'cURL error 35: Server

leaning

2018-01-02 Thread Sajjd Sain
Hey Guys am new here and will like to follow up quickly to know more about Adword -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~

Re: IncomeRange

2018-01-02 Thread Shreya Dama
*My code :* from googleads import adwords ADGROUP_ID = 'x' def main(client, adgroup_id): adgroup_criterion_service = client.GetService( 'AdGroupCriterionService', version='v201710') income = { 'xsi_type': 'NegativeAdGroupCriterion', 'adGroupId': adgroup_id,

Re: Confirmation to get full day of data

2018-01-02 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API Forum
Hi Daniel, Some statistics that go into your reports may be calculated continuously, while others may be calculated once a day. This is one aspect of how data freshness works in AdWords. In most cases, your account statistics are delayed by less than 3 hours. Also, there are instances that an a

Re: throwing DetailedReportDownloadResponseException with 400 Response code.

2018-01-02 Thread 'Peter Oliquino' via AdWords API Forum
Hi, In order to better investigate your concern, could you provide your *clientCustomerId*, the values of your *startDate* and *endDate*, and respond to me privately via the *Reply privately to author* option? Thanks and regards, Peter AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: How to get customer extra info use adwords api in php.

2018-01-02 Thread 'Peter Oliquino' via AdWords API Forum
Hi, For the information you have mentioned, there is currently no direct way to retrieve each item at once. For the account budget, you may use the BudgetOrderService.get() and select the BudgetOrder.Ser

Re: API Worked for months now get this error { "error": "invalid_grant", "error_description": "Bad Request" } Fatal error: Uncaught exception 'OAuth2Exception' with message '{ "error": "invalid_

2018-01-02 Thread 'Luis Xander Talag (AdWords API Team)' via AdWords API Forum
Hi Shenderson, Thanks for your suggestion, I'll try and create a feature request regarding this, but we can't guarantee when and whether the feature will be implemented soon. For now, you may keep an eye on our blog

throwing DetailedReportDownloadResponseException with 400 Response code.

2018-01-02 Thread raneen.bsais via AdWords API Forum
Hi , *we are using the Adwords Api v201702 and we are facing problem :* *We are trying to run this requset by using adwords api.* List fields = new ArrayList<>(); fields.add("AdGroupId"); fields.add("CriteriaType"); fields.add("Criteria"); DateRange dateRange = new DateRange(); dateRan

Re: Some keywords get no results from TargetingIdeaService

2018-01-02 Thread 'Aviv Oron' via AdWords API Forum
Replied privately :) Thanks! On Thursday, December 28, 2017 at 9:41:40 PM UTC+2, Bharani Cherukuri (AdWords API Team) wrote: > > Hello Aviv, > > I was able to retrieve keyword ideas for these keywords both through the > API and the UI. Could you enable logging and provide us the SOAP request >

Missing data when downloading AdGroup Performance report

2018-01-02 Thread angie . dinh
So when I download the adgroup performance report from the API, I got fewer ad groups than when I download from the interface. Did I do something wrong? The code is as follow: def downloadAdGroupReport(start_date, end_date): output = io.StringIO() # Initialize appropriate service. adwor

Ad Group Performance report download missing data

2018-01-02 Thread angie . dinh
So I found that when I download the adgroup performance report in the API, it includes fewer ad groups than when I download from the interface. Did I do something wrong? The code is as follow; I downloaded the report and put it into a pandas dataframe: def downloadAdGroupReport(start_date, en

Confirmation to get full day of data

2018-01-02 Thread Daniel Bieńkowski
Hi, Im using CAMPAIGN_PERFORMANCE_REPORT in AdWords API and I want to ask, when is the best time to get full day of data? Our schedule is set on 4:00AM. Is it enough time to prepare full data from the day before? Is there any way to check if data is correct, so from the full day? What is the bes

How to get customer extra info use adwords api in php.

2018-01-02 Thread trueniu . adsapi
etc.balance , total cast , account budget , remaining account budget , Because I did not find the corresponding method in the example -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+G

Re: Oath2 client was not found

2018-01-02 Thread lijy8023
I use PHP version sdk has meet this problem too It's because a PHP system function ini_restore() has been disable Hope can help you 在 2017年12月29日星期五 UTC+8上午1:40:56,orensa...@gmail.com写道: > > WARNING:googleads.common:Your default encoding, cp1252, is not UTF-8. > Please run > this script with UTF

Re: Can't find info in Documentation about Concurrent Request Limit, and Batch operations

2018-01-02 Thread bukaroo
Hello, I'm afraid you didn't address the main topic of my question. BatchJob service is irrelevant for my cause. Therefore - what is the exact limit of Concurrent Requests I can make? a number is simply not listed in the docs. Thanks. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Al

Re: DownloadCriteriaReportWithAwql got empty data

2018-01-02 Thread lijy8023
Thank you Through your answer I can get data now But I have a new question now I got data is like below Campaign ID,Conversions,Impressions,Clicks,Cost 990364463,118.00,924953,5185,1643015598 936797417,1335.00,2679162,16878,12916141088 953142174,2533.00,1263598,26275,1118543755 934943696,1650

Re: Client Deleted error

2018-01-02 Thread Label Naturel
Hi, I get the same error : PHP Fatal error: Uncaught exception 'GuzzleHttp\Exception\ClientException' with message 'Client error: `POST https://www.googleapis.com/oauth2/v4/token` resulted in a `401 Unauthorized` response: { "error": "deleted_client", "error_description": "The OAuth client

Re: Using temporary ids

2018-01-02 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Flavien, Once the operation is completed, the reference to the temporary ids will be lost. One option is to map with the campaign name instead of the temporary Id. Once you have the campaign created, you can look up the campaign using the name and update the actual campaign Id. Thanks, Sre

Re: From which report and variable we can find the display ad image url by adwords api

2018-01-02 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Ankur, You can use imageadurl in the Ad Performance Report to get the url of the image Ad. You will ne

Re: Cant set value for conversion tracker

2018-01-02 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, You will need to set the alwaysUseDefaultRevenueValue to true and the defaultRevenueValue to 0.0 to select the 'Don't assign value' equivalent in t

Re: Managing third party accounts

2018-01-02 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API Forum
Hi Anson, If you are not a user on the other accounts you will not be able to access the accounts using your credentials. However, if the client is able to authorize you once while setting up their OAuth

Re: AuthenticationError.NOT_ADS_USER

2018-01-02 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, Thank you for sharing the details. I deleted your previous post because it contained sensitive information such as Developer token. You may refer to our forum posting guidelines for reference so as to avoid e

Re: AWQL: Possible to use IN operator for matching strings that contains a phrase?

2018-01-02 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API Forum
Hi Jonas, You will be able to use CONTAINS or CONTAINS_IGNORE_CASE to return broad matches for each value. The closest you may be able to get to, is to include all possible search terms in your IN StringSet. Let me know if you have further questions. Regards, Dhanya, API AdWords Team -- --

Re: AuthenticationError.NOT_ADS_USER

2018-01-02 Thread adwords . manager
Anyone? On Thursday, December 28, 2017 at 1:57:40 PM UTC-8, adwords...@lioncita.com wrote: > > The animated gif mentioned above, uploaded as a static image. > > Here is a link to it: > > https://drive.google.com/file/d/14g2sF0cccgb2Y2G27sNbhJZ-IP0F0pD4/view > > On Thursday, December 28, 2017 at 1

Re: CRITERIA_PERFORMANCE_REPORT does not return 'GclId' (error: Type: ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT Trigger: GclId Field Path: None)

2018-01-02 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Donatas, You could use the CreativeId in both the reports to get the GCLID and stats for the specific Ad in the Click Performance Report

Re: How to set date range in Bid Landscapes - Adwords API

2018-01-02 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi Yang, Ideally, the API results for Bid Landscapes should be comparable with the Bid Simulator. Could you also try the bid simulator for these criterion and see if the results are comparable? If not, could you give some

Re: Get Household Income/Demographic Data to Google Sheet

2018-01-02 Thread 'Dhanya Sundararaju (AdWords API Team)' via AdWords API Forum
Hi Feras, A correction to my reply above : You will need to run the Criteria Performance Report with fields CriteriaType

Re: API Worked for months now get this error { "error": "invalid_grant", "error_description": "Bad Request" } Fatal error: Uncaught exception 'OAuth2Exception' with message '{ "error": "invalid_

2018-01-02 Thread shenderson
Hello Luis, yes I figured out the same thing yesterday. It would sure be nice if the API would be a bit more precise in it's error messaging. A message stating "Your refreshToken has expired, please regenerate a new refreshToken and update your script" That would have saved me hours

Using temporary ids

2018-01-02 Thread Flavien Delahaie
Hello, I want to create campaigns with the API. When creating I want to use temporary ids (https://developers.google.com/adwords/api/docs/guides/batch-jobs#using_temporary_ids). I have a question, when we send a temporary id (-1 for example), the campaign is created on adwords and an id is ass

AWQL: Possible to use IN operator for matching strings that contains a phrase?

2018-01-02 Thread Jonas Bolin
Hello guys, I would like to run a report where which returns all search terms and their corresponding cost where the query contains one of the following: ['football', 'soccer','rugby'] var query = "select Query, Cost from SEARCH_QUERY_PERFORMANCE_REPORT where Query IN ['football', 'soccer','ru