How soon will the Java Libraries support v201209?

2012-10-05 Thread Alex Jones
v201209. Any idea when Java will support these. We use the old style libraries rather than maven, and I am not planning to change that. Any idea when these libraries will support 201209? Thanks, Alex Jones -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and

Re: How soon will the Java Libraries support v201209?

2012-10-08 Thread Alex Jones
gt; Thanks, > Win Ko > > On Friday, October 5, 2012 11:17:33 PM UTC+8, Alex Jones wrote: >> >> I am in charge of porting our companies internal tools from the v201109 >> tools which are sunsetting Oct 26. However, the java libraries currently >> (v8.7.0) only support

Java Libraries: AdWordsUser vs AdWordsSession

2012-10-08 Thread Alex Jones
I'm upgrading from 201109 to 201209 API for our internal tools. Following the migration guide, it was implied/suggested that I should upgrade from using AdWordsUSer to AdWordsSession. However, I can't seem to find any references to AdWordsSession anywhere in the jar itself. Additionally, all t

Re: Java Libraries: AdWordsUser vs AdWordsSession

2012-10-08 Thread Alex Jones
a/source/browse/#git%2Fexamples%2Fadwords_axis%2Fsrc%2Fmain%2Fjava%2Fadwords%2Faxis%2Fv201206%2Freporting%253Fstate%253Dclosed > > they all use the AdwordsSession. > > Oliver > > On Monday, October 8, 2012 8:48:48 PM UTC+1, Alex Jones wrote: >> >> I'm upgradin

Re: API deprecation policy

2012-10-10 Thread Alex Jones
Sunset Dates are on the sunset page: https://developers.google.com/adwords/api/docs/sunset-dates According to that 201206 will be sunset on Feburary 26 2013 On Tuesday, October 9, 2012 3:56:39 PM UTC-4, Jose wrote: > > With the arrival of API v201209, API v201206 will be deprecated. This is > al

Re: API deprecation policy

2012-10-10 Thread Alex Jones
forgot to mention the deprecation has already occured (it occured on oct 5) On Wednesday, October 10, 2012 12:04:48 PM UTC-4, Alex Jones wrote: > > Sunset Dates are on the sunset page: > https://developers.google.com/adwords/api/docs/sunset-dates > > According to that 201206 wi

Getting a budget object from a campaign object - v201209?

2012-10-16 Thread Alex Jones
I'm upgrading to v201209 API from v201109, and have hit a snag. I'm using the Java libraries, and given a campaign, would like to get the budget associated with it, so that the values in that associated budget can be updated. Here's where the problem lies - Budget isn't a Selectable field, and

Re: Sandbox and Reporting

2012-10-18 Thread Alex Jones
as far as I am aware, google doesn't support any sort of random data generation in sandbox. I'd love to hear one way or the other from devs. My advice is for the short term, run that report on a single target and save the zip file it output, then any time you want to test again - have your prog

Re: Getting a budget object from a campaign object - v201209?

2012-10-19 Thread Alex Jones
:Facepalm: I have no idea how I missed that field. Thanks for the help! -Alex Jones On Friday, October 19, 2012 9:19:24 AM UTC-4, Danial Klimkin wrote: > > Hello Alex, > > > Budget is not, but BudgetId is, see: > > > https://developers.google.com/adwords/api/docs

Re: How do I set individual campaign budget in v201209?

2012-10-19 Thread Alex Jones
this helps, Alex Jones On Thursday, October 18, 2012 4:54:39 PM UTC-4, Goran Jovic wrote: > > The problem is, if I do that I didn't really create an individual budget, > but just a shared budget applied to only one campaign. > > The reason I asked is that Adwords webapp

Re: I cant change daily budget with 201209

2012-10-22 Thread Alex Jones
if you want the budgetId from a campaign use the field "BudgetId" on the campaign's selector - same with any other budget field you would like. This will populate the fields of the budget object the campaign carries with it. On Monday, October 22, 2012 2:14:51 PM UTC-4, Reed wrote: > > What is t

How quickly does a budget get Deleted when you perform a REMOVE on it.

2012-10-22 Thread Alex Jones
When creating a new campaign, our software currently checks to see if that campaign exists in the deleted state, and if it does - it modifies it and sets the status to active again, rather than creating a brand new campaign. Budgets don't have a deleted status in the same way a campaign does, no

Re: Unable to Delete a Budget in code

2012-10-22 Thread Alex Jones
BudgetStatus is a read-only field - use a REMOVE operation from the budget service instead. On Monday, October 22, 2012 10:05:02 AM UTC-4, road11 wrote: > > I see that you must first add a budget before you can add a campaign (as > per the C# sample code v201209). That works ok. However, I can't

Re: How quickly does a budget get Deleted when you perform a REMOVE on it.

2012-10-22 Thread Alex Jones
A follow up - it seems to never delete, or at least not fast enough to be a safe assumption On Monday, October 22, 2012 4:45:41 PM UTC-4, Alex Jones wrote: > > When creating a new campaign, our software currently checks to see if that > campaign exists in the deleted state, and if it

Re: Unable to Delete a Budget in code

2012-10-23 Thread Alex Jones
set the campaigns that use that budget to use a budget with id = null. that will allow you to delete it. On Tuesday, October 23, 2012 8:37:18 AM UTC-4, road11 wrote: > > I tried that. It gives me a different error message: this one says that > the it can't be deleted because the Budget is in use

What value would BudgetId have if a camapaign isn't using a shared budget

2012-10-23 Thread Alex Jones
So I have some campaigns in production created with 201109 - which means they are using an individual budget. Since we'd like to move them all to shared budgets automatically, we'd like to detect that they have are still using a shared budget and update them to use a shared budget. My current p

Re: Do deleted campaigns count towards the budget refcount?

2012-10-23 Thread Alex Jones
You have to dissociate them as you delete campaigns. otherwise they still count as linked to the budget. Just set budgetId to null as part of your campaign delete. On Thursday, October 18, 2012 406:32 PM UTC-4, David Bonner wrote: > > Hi all, > > I'm in the middle of migrating from 201109 to 201

Re: What happend to targetContentContextual for Campaign.networkSetting? (v201209)

2012-10-24 Thread Alex Jones
I'm posting here since my question is related. I'd like my software to opt-out of flexible reach for business reasons, as such I'm setting useTargetRestrict = false. Additionally, I'd like to ensure that my campaigns are set to broad mode on creation - is there a field I need to set in the API

Re: How quickly does a budget get Deleted when you perform a REMOVE on it.

2012-10-25 Thread Alex Jones
te: > > Hi Alex, > > Right. Budget don't have a deleted status in the same way a campaign does. > Once a budget gets deleted, it never can get back to ACTIVE. > > I suggest generate a new budget any time as you do. > > Best, > - Takeshi, AdWords API Team > >

Re: What value would BudgetId have if a camapaign isn't using a shared budget

2012-10-25 Thread Alex Jones
That said, you can use any budget as a shared budget by simply > assigning it's id to another campaign. > > -Paul, AdWords API Team. > > On Tuesday, 23 October 2012 16:44:34 UTC+1, Alex Jones wrote: >> >> So I have some campaigns in production created with 201109 - w

Re: Is there a way to verify migration?

2012-10-26 Thread Alex Jones
Depends on how deep you want to check. From my experience with my upgrade simply doing a search for v201109 (or whatever version you are leaving from) is enough to find out that you are no longer using an old version. If you are really paranoid you could use wireshark to packet sniff or someth

Re: How do you send a None (ie. a nil) from the python client library?

2012-10-26 Thread Alex Jones
I'm on the java library, but it seems that you can't just send a budget with a null ID or anything. if you really want to remove your budgets when you are done I would recommend creating a budget with no money (or whatever the minimum is), and then using it as a "parking lot" for campaigns tied

Re: How do you send a None (ie. a nil) from the python client library?

2012-10-26 Thread Alex Jones
PS: In my programs case, we leave the budget active and set the budget to 5 cents and delete the campaign. On Friday, October 26, 2012 4:08:50 PM UTC-4, Alex Jones wrote: > > I'm on the java library, but it seems that you can't just send a budget > with a null ID or anything.

Re: Do deleted campaigns count towards the budget refcount?

2012-10-26 Thread Alex Jones
to nil. > > Has anyone managed this with the python client library yet? > > On Tuesday, 23 October 2012 11:46:13 UTC-4, Alex Jones wrote: >> >> You have to dissociate them as you delete campaigns. otherwise they still >> count as linked to the budget. Just set budgetId t

Re: How do you send a None (ie. a nil) from the python client library?

2012-10-29 Thread Alex Jones
ion, but I was hoping to get a > useful response from Google. > > Thanks for the help, btw. > > On Friday, 26 October 2012 16:08:50 UTC-4, Alex Jones wrote: >> >> I'm on the java library, but it seems that you can't just send a budget >> with a nul

Re: How do I set individual campaign budget in v201209?

2013-03-07 Thread Alex Jones
the shared budgets was introduced in v201206 if memory serves. I'm not aware of a work around to hide the budget, but I have seen mention that our request for the ability to create individual budgets via the API has been passed along to the development team. Hopefully, this feature will be incl

Re: Reporting API randomly returning doubly escaped data in XML reports

2013-11-15 Thread Alex Jones
I'm having the exact same, in our case, we have a mix of contentImprShare='< 10%' and contentImprShare='< 10%' this is making it impossible to parse reports without manual data correction. On Friday, November 15, 2013 5:07:03 AM UTC-5, Florian Lherbette wrote: > > I encountered this issue to

Re: Reporting API randomly returning doubly escaped data in XML reports

2013-11-15 Thread Alex Jones
I'm not sure how this applies to other fields, I've only been concerend with the impression share related fields when the API returns > 90% or < 10%. I'd advise just analyzing your data and seeing how it compares what you expect to recieve. My guess though: if you expect "&" you will get "&

AuthenicationError.NOT_ADS_USER - but only for single report type.

2015-03-07 Thread Alex Jones
We are experiencing issues with requesting a Geography Report from the API. Strangely, we use the same code to process all of our other reports, which completed successfully both before and after the failing Geography Report. We've waited several hours and then requested the report again, to no

No Impression Share Data being returned for display network for date 2015/03/04

2015-03-07 Thread Alex Jones
Hello, We've just noticed that no impression share data is returning for display campaigns on 2015/03/04. We've not changed our reporting application or configuration in production recently, and the data is just fine for 2015/03/03. I do see our impression data for the 4th, so I would assume th

Re: No Impression Share Data being returned for display network for date 2015/03/04

2015-03-13 Thread Alex Jones
ensitive information removed) so we can investigate further? > > Thanks, > Josh, AdWords API Team > > On Saturday, March 7, 2015 at 1:50:54 PM UTC-5, Alex Jones wrote: >> >> Hello, >> We've just noticed that no impression share data is returning for display >&

Re: [BUG] Geo Performance Report: {Error: AuthenticationError.AUTHENTICATION_FAILED, Trigger: , FieldPath: }

2015-04-25 Thread Alex Jones
Confirmed with our toolset as well. Simultaneously downloaded reports using the same credentials and clients are confirmed good. This suggests that as others as saying the issue is related specifically to Geography reporting. This same issue happened back on March 7th, and was resolved by March

Re: [BUG] Geo Performance Report: {Error: AuthenticationError.AUTHENTICATION_FAILED, Trigger: , FieldPath: }

2015-04-27 Thread Alex Jones
Works here too. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are su

Re: New error starting last night: org.xml.sax.SAXException: Invalid element in com.google.api.ads.adwords.axis.v201601.cm.ExtensionSetting - ExtensionSetting.Type

2016-05-06 Thread Alex Jones
I'm also getting this error. On Friday, May 6, 2016 at 8:26:13 AM UTC-4, joel wrote: > > It looks like the CampaignExtensionSettingService is now returning a new > element in the SOAP XML that's unrecognized. This started happening > yesterday. It's causing the SAX parser and API call to fail. A

Re: New error starting last night: org.xml.sax.SAXException: Invalid element in com.google.api.ads.adwords.axis.v201601.cm.ExtensionSetting - ExtensionSetting.Type

2016-05-06 Thread Alex Jones
ny case, if the Java library is unable to parse the field, then you > should file a bug at the Java library's issue tracker: > https://github.com/googleads/googleads-java-lib/issues > > Regards, > Mike, AdWords API Team > > On Friday, May 6, 2016 at 12:07:38 PM UTC-4, Alex J

Re: New error starting last night: org.xml.sax.SAXException: Invalid element in com.google.api.ads.adwords.axis.v201601.cm.ExtensionSetting - ExtensionSetting.Type

2016-05-06 Thread Alex Jones
Regards, > Mike, AdWords API Team > > On Friday, May 6, 2016 at 1:15:23 PM UTC-4, Alex Jones wrote: >> >> We are requesting it, and we've been successfully processing using that >> field for several months now. We're not recently redeployed our Adwords >>

Re: New error starting last night: org.xml.sax.SAXException: Invalid element in com.google.api.ads.adwords.axis.v201601.cm.ExtensionSetting - ExtensionSetting.Type

2016-05-06 Thread Alex Jones
I'm still working on getting SAOP, but I've noticed it's an intermittent problem. We retried several of the failed requests, and a majority succeed, but some remained failed. Perhaps this is a routing issue? On Friday, May 6, 2016 at 8:26:13 AM UTC-4, joel wrote: > > It looks like the CampaignEx

v201509 Reporting API - Null Values suddenly being returned as '--'

2016-05-13 Thread Alex Jones
We are using the v201509 API, and this morning the report format has changed on us. Yesterday our Quality Score for some of our newer Ads was reported as '0'. Today these are returning quality score as '--'. The Api Migration Doc suggests this is a new feature (String values will have Null enco

Read Only OAuth Scope

2017-03-21 Thread Alex Jones
Hello, I'm reviewing the OAuth Documentation for AdWords, and I noticed there is no read-only scope mentioned in the documentation . Is this correct? I've seen a post dating back to 2013 requesting a read only scope, b