Re: I just posted a question and it disappeared

2017-12-04 Thread kendan
YOur right, mine too On Monday, November 27, 2017 at 6:27:34 PM UTC+8, orrb...@gmail.com wrote: > > I just posted a question and it disappeared, i just check what happen > again when you click POST and I will delete this message :) > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also

is it possible for Ad Group Bid increase and decrease to a specific criteria like gender and age range?

2017-12-04 Thread kendan
I have already implemented google adwords API. I am using Google Adwords API PHP library. Things that are possible that I have done: - Get list of Campaigns - Get list of Ad groups in a campaign - Remove a Campaign - Remove a Ad group - Increase or decrease bid on campaign with platform - Get li

is google adwords api change history limited?

2017-12-05 Thread kendan
I have been tracking my events in the UI. It seems that when it reaches to 14 track events, its not tracking anymore. I don't know why. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+

I run the sample code of google adwords api then I got Soap Error

2017-12-05 Thread kendan
I am running Xampp v3. PHP 7.1 Windows 10 64x I was only making a simple GetCampaigns. This is the error. Fatal error: Uncaught SoapFault exception: [WSDL] SOAP-ERROR: Parsing WSDL: Couldn't load from 'https://adwords.google.com/api/adwords/cm/v201710/CampaignService?wsdl' : failed to load

Re: is it possible for Ad Group Bid increase and decrease to a specific criteria like gender and age range?

2017-12-05 Thread kendan
This example is for mobile platforms. I tried it and work perfectly. There is example code for adding BiddableAdGroupCriterion to an adgroup: https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201708/BasicOperations/AddAdGroupDemographicCriteria.php Now my problem is I d

how do I get the list of placement in a adgroup?

2017-12-06 Thread kendan
I want to retrieve the list of Placement in a adgroup via the API, is it possible in the first place? can anyone point me the right direction? reference, etc. Where I can start study in the API. There is no example given in the google adwords api sample. I am using PHP, by the way. -- -- =

Re: I run the sample code of google adwords api then I got Soap Error

2017-12-06 Thread kendan
I manage to solve the problem with the help of someone in github. Here is our conversation and the solution as well. Please follow the steps carefully. Solution: https://github.com/googleads/googleads-php-lib/issues/276#issuecomment-349531261 Quick solution: This is for PHP 7.1, Xampp 3.2.2, W

Re: I run the sample code of google adwords api then I got Soap Error

2017-12-06 Thread kendan
I found the solution, someone in github helped me. Here is our conversation and solution: https://github.com/googleads/googleads-php-lib/issues/276#issuecomment-349531261 For quick solution, please follow the steps: This is for PHP 7.1, Xampp 3.2.2, Windows 10 64x/32x. Steps: 1. download pe

Re: How to increase bid on a placement.

2017-12-06 Thread kendan
Can you guys show a sample code of increasing and decreasing bid for placement? I believe when you try it it should be url right? Im not sure. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.googl

how to set bid modifier to a placement in a ad group

2017-12-06 Thread kendan
I am trying to set bid modifier to a placement in a ad group $placement = new Placement(); $placement->setUrl('wordpress.com'); $biddableAdGroupCriterion = new BiddableAdGroupCriterion(); $biddableAdGroupCriterion->setAdGroupId(47069225942); $biddableAdGroupCriterion->setCrite

how to remove placement url's in ad group

2017-12-07 Thread kendan
This seems not to be working $placement = new Placement(); $placement->setUrl($url); // $adGroupCriterion = new BiddableAdGroupCriterion(); $adGroupCriterion = new NegativeAdGroupCriterion(); $adGroupCriterion->setAdGroupId($adGroupId); $adGroupCriterion->setCriterion($pl

is it possible to get the list of histories?

2017-12-07 Thread kendan
I am trying to retrieve a list of history in google adwords... and also make some undo button. so, is it possible? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/p

how to get a single campaign with campaign id of course?

2017-12-07 Thread kendan
I want to retrieve a single campaign. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this messa

make getLastChangeTimestamp readable

2017-12-08 Thread kendan
This function: *echo "Most recent change: ".$accountChanges->getLastChangeTimestamp()* will displays: *"Most recent change: 20171207 234008 PST8PDT"* How do I make it readable? Like for example: *Most recent change: Dec 6, 2017 1:30pm* -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Al

Re: is it possible to get the list of histories?

2017-12-08 Thread kendan
Does google api devs will not make it public or they are planning in the future? When do I expect? Where can I make some suggestions for devs? Its really a good feature people can access the history with undo button. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our bl

Re: make getLastChangeTimestamp readable

2017-12-08 Thread kendan
Can you tell me what it is? 20171207 234008 PST8PDT I tried date('y-m-d', $accountChanges->getLastChangeTimestamp); it doesn't work On Friday, December 8, 2017 at 4:09:50 PM UTC+8, ken...@blvnp.com wrote: > > This function: > *echo "Most recent change: ".$accountChanges->getLastChangeTimesta

Re: is it possible to get the list of histories?

2017-12-08 Thread kendan
Okay, I understand, thank you for responding really fast. On Friday, December 8, 2017 at 2:19:26 PM UTC+8, ken...@blvnp.com wrote: > > I am trying to retrieve a list of history in google adwords... and also > make some undo button. so, is it possible? > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: how to get a single campaign with campaign id of course?

2017-12-08 Thread kendan
I will try this, Ill let you know if this works later. A follow up question, is it possible to use AWQL for deleting data? On Friday, December 8, 2017 at 3:47:30 PM UTC+8, ken...@blvnp.com wrote: > > I want to retrieve a single campaign. > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

Re: how to get a single campaign with campaign id of course?

2017-12-08 Thread kendan
Okay thank you very much! On Friday, December 8, 2017 at 3:47:30 PM UTC+8, ken...@blvnp.com wrote: > > I want to retrieve a single campaign. > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.googl

is there a way to bid adjust different criteria in one function?

2017-12-08 Thread kendan
is there a way to bid adjust different criteria in one function? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

is there a way to make a bid adjustment for a Placement only for a particular demographic, or location?

2017-12-08 Thread kendan
What I'm trying to accomplish is to make a bid adjustment to a particular placement. But to make that bid adjustment only activate when viewed in a particular country, or when viewed by a particular demographic (I.E. a specific gender). Is this possible? And if it is possible, how could I confi

Re: is there a way to make a bid adjustment for a Placement only for a particular demographic, or location?

2017-12-10 Thread kendan
Alright, thanks for pointing me that. Thanks! On Friday, December 8, 2017 at 7:39:21 PM UTC+8, ken...@blvnp.com wrote: > > What I'm trying to accomplish is to make a bid adjustment to a particular > placement. But to make that bid adjustment only activate when viewed in a > particular country, o

How do you bid adjust in a placement with mobile application type?

2017-12-13 Thread kendan
I already have a workign Placement bid adjustment using ad group id and final urls, it works fine. Follow up question: How do you bid adjust a placement using criterion id? Thanks! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleads

Re: How do you bid adjust in a placement with mobile application type?

2017-12-13 Thread kendan
@Vincent What I mean by *"bid adjust a placement"* is that I want to adjust the bid (like for example) %10 of a placement with type mobile application. This placement with type Mobile Application has a criterion ID. As for the reference you give me, I don't think that guide would work just by r

Re: How do you bid adjust in a placement with mobile application type?

2017-12-13 Thread kendan
Im really sorry. Im not good with SOAP. Can you provide me a PHP? I have this code with adjusting bid for placement using ad group id and url. *$adGroupCriterionService = $adWordsServices->get($session, AdGroupCriterionService::class);* *$placement = new Placement();* *$placement-

Re: How do you bid adjust in a placement with mobile application type?

2017-12-13 Thread kendan
Hi, can you teach me how to do it in PHP? On Wednesday, December 13, 2017 at 4:37:00 PM UTC+8, ken...@blvnp.com wrote: > > I already have a workign Placement bid adjustment using ad group id and > final urls, it works fine. > > > Follow up question: How do you bid adjust a placement using criteri

Re: How do you bid adjust in a placement with mobile application type?

2017-12-13 Thread kendan
Placement class doesn't have setId method. *url = $url;* *}* */*** * * @return string* * */* *public function getUrl()* *{* * return $this->url;* *}* */*** * * @param string $url* * * @return \Google\AdsApi\AdWords\v201708\cm\Placement* * */*

Re: How do you bid adjust in a placement with mobile application type?

2017-12-13 Thread kendan
Holy shit.. It really worked! Thank you! On Wednesday, December 13, 2017 at 4:37:00 PM UTC+8, ken...@blvnp.com wrote: > > I already have a workign Placement bid adjustment using ad group id and > final urls, it works fine. > > > Follow up question: How do you bid adjust a placement using criterio

How do you add a placement in ad group with criterion_type: MOBILE_APPLICATION?

2017-12-13 Thread kendan
I have this code adding placements using ad group id and url * $adGroupCriterionService = $adWordsServices->get($session, AdGroupCriterionService::class);* *$placement = new Placement();* *$placement->setUrl($url);* *if($exclude == 'true'){* * $adGroupCriterion = new Negati

Re: How do you add a placement in ad group with criterion_type: MOBILE_APPLICATION?

2017-12-14 Thread kendan
I tried this code, it seems to be not working, what did I do wrong? * $criterion_type = new MobileApplication();* *$criterion_type->setDisplayName('Mobile App: Ken Player (Google Play), by Ken V7');* On Thursday, December 14, 2017 at 3:14:05 PM UTC+8, ken...@blvnp.com wrote: > >

How do I get the account error alerts in Google Adwords dashboard via the API?

2017-12-15 Thread kendan
I have this error in my Google Adwords account. I wanted to get this information via the API. Is it possible? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=

is it safe to give my soap.log to someone?

2017-12-15 Thread kendan
is it safe to give my soap.log to someone? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this

Re: How do I get the account error alerts in Google Adwords dashboard via the API?

2017-12-19 Thread kendan
Its available in Java but not in PHP? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this messa

Convert this SQL code to adwords PHP

2018-01-04 Thread kendan
// Create selector. $selector = new Selector(); $selector->setFields(['CampaignId', 'AdGroupId', 'Id', 'Criteria', 'CriteriaType', 'Impressions', 'Clicks', 'Cost']); // Use a predicate to filter out paused criteria (this is optional). $selector->setPredicates([

Re: Convert this SQL code to adwords PHP

2018-01-05 Thread kendan
> > Like for example how? > Like this? $selector->setPredicates([ new Predicate('Status', PredicateOperator::NOT_IN, ['PAUSED']), new Predicate('Status', PredicateOperator::NOT_IN, ['PAUSED']), new Predicate('Status', PredicateOperator::NOT_IN, ['PAUSED']) ]); -- -

is it possible to retrieve 1 result of campaign? using campaign_id of course

2018-01-08 Thread kendan
My question says it all. Thanks! -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message be

Re: is it possible to retrieve 1 result of campaign? using campaign_id of course

2018-01-09 Thread kendan
Thanks! On Tuesday, January 9, 2018 at 1:48:27 PM UTC+8, Vincent Racaza (AdWords API Team) wrote: > > Hi Ken, > > To retrieve 1 result of a campaign, you can use the CampaignService.get() > > or > through ge

Is there a way to do this? attached image

2018-01-09 Thread kendan
*Is the above image possible in Google Adwords API in PHP? Probably using AWQL?* -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~