Re: v201109 "Email cannot be null" issue

2012-03-07 Thread Paigey
;ClientCustomerId", insert customer client id here); AdWordsUser user = new AdWordsUser(headers); Hope this helps other people migrating to the new version of the api. I've seen a few messages saying you can still authenticate using ClientEmail, but d

Re: Urgent help! Error message saying "You are accessing an AdWords API version that has been discontinued"

2012-03-06 Thread Paigey
> > So it has been discontinued. Thanks Google... Now have to > rewrite my app! > > Paigey > -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com

Urgent help! Error message saying "You are accessing an AdWords API version that has been discontinued"

2012-03-06 Thread Paigey
eSelector) at adwords_manage_sitelinks.GetCampaignsByAccount(String accountemail) Is this an input error such as an invalid string causing this error or has this version of the API indeed been discontinued? Paigey -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blog

Dynamic sitelinks array

2011-11-21 Thread Paigey
[] { siteLink1, siteLink2, siteLink3 }; will only allow a v201101.Sitelink so can't use a dynamic string array! Any ideas if it's at all possible, would be great. Thanks Paigey -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.bl

Re: dotnet api and sitelinks take 2

2011-11-21 Thread Paigey
se them as long and everything is working fine now! I suppose like everything in life it's just a case of trial and error but got there in the end. Thanks for your help as always Paigey On Nov 18, 5:42 pm, "Anash P. Oommen" wrote: > Hi Paigey, > > I'd recommend you m

Re: dotnet api and sitelinks take 2

2011-11-16 Thread Paigey
e great otherwise will do some further testing to see if this keeps happening! On Nov 14, 6:05 pm, Paigey wrote: > Looks like the value linkid on line 39 is null and the api doesn;t > allow nullable values. > I added > > if (linkId == null) >         { >    

Re: dotnet api and sitelinks take 2

2011-11-14 Thread Paigey
retVal = Line 85: campaignExtensionService.mutate(new CampaignAdExtensionOperation[] { Line 86: operation }); On Nov 14, 5:41 pm, Paigey wrote: > Hi all, back in August I posted some requests for help with how adding > and removing sitelinks works and would like to say

dotnet api and sitelinks take 2

2011-11-14 Thread Paigey
mpaignAdExtensionOperation[] { operation }); if (retVal != null && retVal.value != null && retVal.value.Length > 0) { return retVal.value[0].adExtension as SitelinksExtension; } e

Re: ServicedAccountService v201101 c# only returns 1 account

2011-11-09 Thread Paigey
Please disregard message, there was a caching issue on my server. On Nov 9, 11:56 am, Paigey wrote: > Hi, > > Has anything changed on the api? When trying to get a list of accounts > under my adwords account I can now only see one account where up until > about an hour ago I

ServicedAccountService v201101 c# only returns 1 account

2011-11-09 Thread Paigey
Hi, Has anything changed on the api? When trying to get a list of accounts under my adwords account I can now only see one account where up until about an hour ago I was getting all accounts. I've tested using your GetAccountHierarchy.cs example and no errors are returned, just one account. Than

Re: dotnet api and sitelinks

2011-08-22 Thread Paigey
urce/browse/trun... > > Pete > > On Aug 17, 4:13 am, Paigey wrote: > > > > > Hi Pete, > > > Thanks for the info! I'll look into using arrays. Would you be able to > > point me in the direction of any examples in C#? > > > Kind re

Re: dotnet api and sitelinks

2011-08-17 Thread Paigey
telinksExtension is what > gets set.  So, you don't add / remove Sitelinks, you just set what > should be active. > > If you initially set your Sitelinks as an array [ "1", "2", "3" ] but > want to remove the "3", you just send a new a

dotnet api and sitelinks

2011-08-11 Thread Paigey
Hi all, I've seen a few examples of how you can add/remove sitelinks for a campaign using the CampaignAdExtensionService but it seems to only allow the removal or adding of all sitelinks at one time. If a campaign has say 4 sitelinks, is it possible to just delete one and add a new one via the ap