Re: Handling exceptions that occur in the API

2017-02-10 Thread newmccacc
I'm referring to the example of policy violation error, and tried to apply it to my case as follows: except suds.WebFault as e: for error in e.fault.detail.ApiExceptionFault.errors: if error['ApiError.Type'] == 'RateExceededError': print "Sleeping RateExceededError" time.sleep(31) continue Her

Re: How get CustomerId with OAuth 2.0

2017-02-10 Thread Francesco Protano
Hello the u suggested it s for .net my code is for php but it s not important, i think it will an similar solution to capture the soap messages. U seems an expert adwords advice , so, can u send to me an example to archieve my workflow? But first is it possible ? Thk for the reply -- -- =~=~

Re: Campaign Month Budget

2017-02-10 Thread 'Vishal Vinayak (Adwords API Team)' via AdWords API Forum
Hi Daniel, Since budgets operate on campaigns on a daily basis (e.g. not serving ads when the budget is overrun), the amount that you retrieve using CampaignService is a daily amount. To calculate monthly budget for a campaign, the simplest way would be to multiply the daily budget with the nu

Re: How get CustomerId with OAuth 2.0

2017-02-10 Thread 'anash' via AdWords API Forum
Hi Francesco, I wonder if you are mixing up the access token somewhere (between the user's access token and a hardcoded debug access token). Could you turn on logging following the instructions on https://github.com/googleads/googleads-dotnet-lib/wiki/How-to-capture-SOAP-messages (it will al

Re: How get CustomerId with OAuth 2.0

2017-02-10 Thread Francesco Protano
Hi nadine i guess you are .net expert programmer but i think u are able to explain where i wrong. My goals is to pick all the accounts of a user who have and manage in his an adwords account . I followed all steps suggested from the google guide. After the i taken the access token of the logged

Re: How get CustomerId with OAuth 2.0

2017-02-10 Thread Francesco Protano
Hi nadine i guess you are .net expert programmer but i think u are able to explain where i wrong. My goals is to pick all the accounts of a user who have and manage in his an adwords account . I followed all steps suggested from the google guide. After the i taken the access token of the logged

Campaign Month Budget

2017-02-10 Thread Daniel Osuna
Hi there, is there anyway to get the budget of a campaign whole month(For example, I want the monthly budget for February 2017)? I keep gettng only the daily budget data, I've tried CampaignService and CampaignCriterionService with the Attribute "Amount". Any help, please? -- -- =~=~=~=~=~=~=

Re: API Access to Billing Transaction History reports

2017-02-10 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hello, The billing transaction history is still not available via the API. If you haven't already, you could follow our blog for updates and announcements about the API. Thanks, Sreelakshmi, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: Is it possible to get all the campaign data as a single response (JSON/XML) in adwords api?

2017-02-10 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hi, By design In AdWords API, the get() methods does not return all the fields of an object by default. You will need to set the required fields in the selector which is passed in as the input to the get() methods. Please check this

Re: PHP API v201609 - How to refresh token?

2017-02-10 Thread Adam Haining
https://github.com/googleads/googleads-php-lib/issues/218 Thanks! On Friday, February 10, 2017 at 6:52:22 AM UTC-7, Josh Radcliff (AdWords API Team) wrote: > > Hi Adam, > > Could you file an issue for this problem on the PHP library issues page >

Re: Destination and display URLs

2017-02-10 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Mark, This forum post provides more information on how AdWords chooses which finalUrl to serve when an ad is displayed. This does not impact the displayUrl for the ad. When

Re: Do you provide API for marketing objectives?

2017-02-10 Thread 'Sreelakshmi Sasidharan (AdWords API Team)' via AdWords API Forum
Hello, The Campaigns created through the API are equivalent to 'All features' campaign. That being said, to implement the Marking objectives via the API, you will need to add the corresponding campaign criterions

Is it possible to get all the campaign data as a single response (JSON/XML) in adwords api?

2017-02-10 Thread royalltestmanager
I would like to get all the campaign data with a single call to the API for one campaign without having to specify each field in the xml call request.Please let me know if this is possible. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://goo

Re: API Access to Billing Transaction History reports

2017-02-10 Thread UP Vision S.r.l.
Hi Michael, has anything changed today? It's possible get Billing Transaction History? Or No? Thanks. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~

Re: PHP API v201609 - How to refresh token?

2017-02-10 Thread 'Josh Radcliff (AdWords API Team)' via AdWords API Forum
Hi Adam, Could you file an issue for this problem on the PHP library issues page ? The engineers working on the library are actively monitoring that page and should be able to answer your questions. Thanks, Josh, AdWords API Team On Frida

Do you provide API for marketing objectives?

2017-02-10 Thread 오학섭
Do you provide API for marketing objectives such as Build awareness, Influence consideration, and Drive action when creating Display Network ad? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.goo

Re: Different results in Web Interface and API

2017-02-10 Thread Владислав Соколенко
Hi! Michael, soon we will be celebrating 1 year since we wrote about the problem. It's very sad because this problem does not allow us to work normally with forecasts. Please, tell us about the proggress in solving this problem? четверг, 13 октября 2016 г., 17:44:49 UTC+3 пользователь Michael

Re: Can I get real-time postbacks of my AdWords ad performance to my server?

2017-02-10 Thread 'Joyce Lava' via AdWords API Forum
Hello, Statistics are not available in real-time. The concept of data freshness explains more about it. Please let me know if this helps. Regards, Joyce, AdWords API Team -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us o

Re: Keeping the access token valid during API calls

2017-02-10 Thread Danny
Hi Adam I "think" I might've solved my own issue with the solution I presented where the refresh token is set to the OAuth2 object, which is then passed to the AdWordsSessionBuilder. Based on this, I assume when you use the returned AdWordsSession object to make API calls (containing the refres