Re: [PHP SDK] - How to change the clientCustomerId on the new SDK

2017-02-14 Thread Arce Yazilim
We thank you. He works like we want. 14 Şubat 2017 Salı 20:18:26 UTC+3 tarihinde Shwetha Vastrad (AdWords API Team) yazdı: > > Hi, > > You can set the clientCusotmerId while creating an AdWords session as > shown below: > > $session = (new AdWordsSessionBuilder()) > ->fromFile() >

Re: NuGet Google.AdWords.dll not strong name signed? v19.0.0

2017-02-14 Thread 'Thanet Knack Praneenararat (AdWords API Team)' via AdWords API Forum
Hi Bejan, Thanks Bejan for getting back to us. There'll be our team answering your questions in GitHub. Best, Thanet, AdWords API Team On Wednesday, February 15, 2017 at 1:33:19 PM UTC+9, Bejan @ MarketFlare wrote: > > OK, I have submitted an issue @ GitHub. > > Thanks, > > Bejan A. > > On

Re: NuGet Google.AdWords.dll not strong name signed? v19.0.0

2017-02-14 Thread Bejan @ MarketFlare
OK, I have submitted an issue @ GitHub. Thanks, Bejan A. On Tuesday, February 14, 2017 at 7:54:23 PM UTC-8, Peter Oliquino wrote: > > Hi Bejan, > > Could you confirm if you are using one of the AdWords API client > libraries, specifically the .NET client library? If yes, and if you are >

Re: NuGet Google.AdWords.dll not strong name signed? v19.0.0

2017-02-14 Thread Bejan @ MarketFlare
Hi Peter, I am referring to the library that is packaged officially here - https://www.nuget.org/packages/Google.AdWords/ Usually the dll is signed, but this and also the precompiled assembly at github are not signed. Thanks, Bejan A. http://www.marketflare.com On Tuesday, February 14, 2017

Re: NuGet Google.AdWords.dll not strong name signed? v19.0.0

2017-02-14 Thread 'Peter Oliquino' via AdWords API Forum
Hi Bejan, Could you confirm if you are using one of the AdWords API client libraries, specifically the .NET client library? If yes, and if you are experiencing issue with the configuration, I would recommend that you get in touch with the .NET client library owners via this link

NuGet Google.AdWords.dll not strong name signed? v19.0.0

2017-02-14 Thread Bejan @ MarketFlare
Just fetched the NuGet of Google.AdWords.dll (v19.0.0) and it's not strong name signed. Will we need to compile it with the strong name cert? Or will a strongly named version be published at NuGet? VS 2015 has the error during runtime - System.TypeInitializationException > > Could not

NuGet Google.AdWords.dll not strong name signed? v19.0.0.0

2017-02-14 Thread Bejan @ MarketFlare
Just fetched the NuGet of Google.AdWords.dll (v19.0.0.0 for API v201702 support) and it's not strong name signed. Will we need to compile it with the strong name cert? Or will a strongly named version be published at NuGet? VS 2015 has the error during runtime -

Re: Keyword bid update using "new keyword add", not an actual update

2017-02-14 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, Yes, that is correct. The addition of a keyword with the same combination of text and the match type in an ad group will not result in an error, instead it would update the existing keyword with the values provided in the request. Using the SET for update operation would be the right

Re: API V201607 Cross Client Report for click performance and MCC with thousands of sub-accounts

2017-02-14 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, The cross client (MCC) reporting feature was deprecated in the version v201109 of the API. A given report request can only include data from a single AdWords account. If you need to gather

Re: Keyword bid update using "new keyword add", not an actual update

2017-02-14 Thread GDZ
Oh wait :) That actually means you can update kw bid with ADD operation much faster than with the SET operation where you have to obtain kw id first? On Tuesday, February 14, 2017 at 3:34:40 PM UTC-5, GDZ wrote: > > Never mind. Just tested this and yes it did change the bid for existing kw.

Re: Keyword bid update using "new keyword add", not an actual update

2017-02-14 Thread GDZ
Never mind. Just tested this and yes it did change the bid for existing kw. On Tuesday, February 14, 2017 at 3:21:51 PM UTC-5, GDZ wrote: > > Hello! > > Suppose I have a kw [red widget] with its own bid say $1.00, different > from default adgroup bid say $0.50. Now I'm adding bunch of new kws

Keyword bid update using "new keyword add", not an actual update

2017-02-14 Thread GDZ
Hello! Suppose I have a kw [red widget] with its own bid say $1.00, different from default adgroup bid say $0.50. Now I'm adding bunch of new kws to this adgroup and of of them is [red widget] too with bid $2.00 Am I right that after ADD operation my [red widget] bid will now be to $2.00?

Re: Partial Synchronization Using aw-reporting

2017-02-14 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Eshwar, It looks like the AwReporting framework doesn't support predicates yet. If you are using AdWords API to download reports, you can filter for specific campaigns using a predicate in the report definition. The

API V201607 Cross Client Report for click performance and MCC with thousands of sub-accounts

2017-02-14 Thread Chris Hahn
Hello, Is there any way to determine which sub-account from an MCC a particular GCLID belongs to other than looping through the sub-accounts and checking them one at a time? I've seen some things in help topics about cross client reporting but that was from a few years ago and I can't find

Re: [PHP SDK] - How to change the clientCustomerId on the new SDK

2017-02-14 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi, You can set the clientCusotmerId while creating an AdWords session as shown below: $session = (new AdWordsSessionBuilder()) ->fromFile() ->withOAuth2Credential($oAuth2Credential) ->withClientCustomerId(clientCustomerId) ->build(); Regards, Shwetha,

Re: How can we set targeting when creating adgroup through adwords api?

2017-02-14 Thread 'Vishal Vinayak (Adwords API Team)' via AdWords API Forum
Hi, To add a *specific *gender and age ad group criterion to an ad group, you can refer to this example . The example shows how

[PHP SDK] - How to change the clientCustomerId on the new SDK

2017-02-14 Thread Arce Yazilim
Hello, I could change the customer id on the old SDK as below. $user = new AdWordsUser (); $user->LogAll (); $user->SetClientCustomerId (111); // < this one I have not found out how to do this on the new SDK. We need to change this value because there are multiple users who use our

Partial Synchronization Using aw-reporting

2017-02-14 Thread Eshwar Chettri
Hi, I have one question. Can we use campaignIds to get the details those campaigns using aw-reporting? I'am trying to make partial synchronization where i can select the few campaigns. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: