Re: missing adwords in oauthplayground

2017-10-05 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Simon, Please follow the guide here for the OAuth2 playground. You need to manually input the "https://www.googleapis.com/auth/adwords"; and click the Authorize APIs button for the AdWords API. If you

How to refer 0 impressions keyword performance in the report.

2017-10-05 Thread T.Motodate
I'm using AdWords API v201708. To get ALL (including 0 impressions) keywords' performances from the report, I made the below codes: [PHP Code] = $objOAuth2Credential = (new OAuth2TokenBuilder())->fromFile(PATH_ADWORDS_INI)

Re: 48 Hours Batch Job Status is Still AWAITING_FILE

2017-10-05 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi, Upon checking with the team, it looks like there are no operations being sent in your batch job. This is probably why the batch job is shown as AWAITING_FILE status. Please try to send the batch job operations again and let us know if the issue still persists. Thanks, Vincent AdWords API T

Re: Not getting Auth refresh token in every request

2017-10-05 Thread TheDigiFrog
Hi there, Thank you for your reply. Sorry to ask but did you checked the attached file ? it's a web application for the auth from Google to get the Access token and refresh token. So that we can use it offline. We are not getting any error when generating refresh token , it comes first time onl

Re: Adwords API: DEVELOPER_TOKEN_NOT_APPROVED

2017-10-05 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello Nico, The DEVELOPER _TOKEN_NOT_APPROVED error is noticed when you're usi

Re: Create Text Label - Adwords API 201708 php - Cannot access empty property in Google/AdsApi/AdWords/v201708/cm/Label.php on line 172

2017-10-05 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Zac, Could you try using the code snippet provided below: public function createLabel($name){ $service = $this->adWordsServices->get($this->session, LabelService:: class); $operations = []; $txt = new TextLabel(); $txt->setName($name); $operation = new La

Re: Not getting Auth refresh token in every request

2017-10-05 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello Naresh, Could you provide me the details about the application flow type (Installed or Web application) used for the implementation and the specific error you're receiving when refreshing the token? If you're not reusing the refresh token, you will have to use prompt=consent to get a simi

Re: missing adwords in oauthplayground

2017-10-05 Thread Simon Hurley
I to am having the same problem. I cant find the adwords scope on https://developers.google.com/oauthplayground/ On Sunday, 30

Adwords API: DEVELOPER_TOKEN_NOT_APPROVED

2017-10-05 Thread NW Int
Hello, yesterday I wanted to create a test account for testing your adwords API for PHP, but not successful. I asked for help, and someone in your team sent me a link, in which is written, that I should first create a production management account and a test management account. So, I've done

TargetingIdeaService: no results returned when in the keywords list there is at least one keyword with the term "news"

2017-10-05 Thread Mauro Guerrieri
Hello, i've been analyzing a very strainge behaviour of the targetingideaservice. If i request data for a set of keywords like this: 'news denver', 'media matters', 'israeli news live', 'goldie hawn daughter', 'definition of compassion', 'symptoms of

Create Text Label - Adwords API 201708 php - Cannot access empty property in Google/AdsApi/AdWords/v201708/cm/Label.php on line 172

2017-10-05 Thread Zac Hillier
Hi I'm migrating to the new Adwords API and trying to create a text label. At the bottom my code, but this gives an error *Fatal error*: Cannot access empty property in *[..]/Google/AdsApi/AdWords/v201708/cm/Label.php* on line *172* Which relates to: public function __set($var, $value) {

Re: CustomerServer getCustomers throws UNEXPECTED_INTERNAL_API_ERROR

2017-10-05 Thread gyntema
Thanks for the reply Vincent! I'm still receiving the same error and haven't been able to send a successful one yet. On Wednesday, October 4, 2017 at 9:58:12 PM UTC-7, Vincent Racaza (AdWords API Team) wrote: > > Hi, > > I can see that you have also posted this as a private reply on this forum

Re: I am getting the test account results for the live account queries ???

2017-10-05 Thread 'Jude Amagoh' via AdWords API Forum
Hi, You need to reconfigure the client library to use the production manager account's refresh token. Use the Get an OAuth2 refresh token and configure your client guide

Not getting Auth refresh token in every request

2017-10-05 Thread thedigifrog
Hi API Team, I am not able to get Auth refresh_token in every request. If any accidental activity occur by client like no internet while fetching refresh token or missed to save it then new OAuth2 will not return refresh token again. so, i want refresh token in every request. We are using thi

Re: getkeywords.php is not working

2017-10-05 Thread 'Bharani Cherukuri (AdWords API Team)' via AdWords API Forum
Hello, Could you provide us the complete SOAP request and response logs so I can take a look? Please respond via *Reply privately to author* while responding. Thanks, Bharani, AdWords API Team On Thursday, October 5, 2017 at 5:09:21 AM UTC-4, gran...@gmail.com wrote: > > Hello guys, > > I am

Re: 48 Hours Batch Job Status is Still AWAITING_FILE

2017-10-05 Thread roger
Thank You Vincent, Ill wait for the findings... On Thursday, October 5, 2017 at 3:46:28 PM UTC+8, Vincent Racaza (AdWords API Team) wrote: > > Hi, > > I deleted your original post as it contains private information. In the > future, please do not send confidential information. You can check our

Re: Need to bypass all adwords endpoint url to different url from java client library v201708

2017-10-05 Thread hari krishna
Thanks Josh, We want to replace all adwords request URL to our own URL. Since we are using below code, I need some more information on this. 1) If I use api.adwords.endpoint propery then it will be applicable to below code also. 2) Can you please let us know what are the requ

Re: Need to bypass all adwords endpoint url to different url from java client library v201708

2017-10-05 Thread hari krishna
Thanks Josh, We want to replace all adwords urls which we are calling from code. I just need some more information on below code from java client library example. 1) Can you please let us know whether below code also uses api.adwords.endpoint property host when calling adwords apis. 2) Can

Cannot set ProductBiddingCategory in google adwords api with php

2017-10-05 Thread Veronica Mihaela
I use google adwords api(v 201705) in my application and when I want to set ProductBiddingCategory in inventory filter it does not work as it should. I have a config with the ids. I use Laravel 5.4 and php 5.6. This is for first level: 'category1stLevel' => array( '-7183678771116356049

getkeywords.php is not working

2017-10-05 Thread granktest
Hello guys, I am trying to get the keywords in a adgroup and I am using v201708 php library example code. I am getting 0 results. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+Googl

I am getting the test account results for the live account queries ???

2017-10-05 Thread granktest
I have an test account and I have tried accessing the API I have got the expected results but when I try changing the developer token of my live account , I am getting the test results. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://google

Re: Where can I check the adjusted bid I made in a placement?

2017-10-05 Thread bruce
Thank you so much, Vincent. My bad. I am very sloppy. It works now. All I need to do is to set the status of the Placement to Manage so that I can get the criterion id. The Status sets to automatic in which I can't get or see the criterion ID. Anyways, thank you for helping me with this. I real

Re: 48 Hours Batch Job Status is Still AWAITING_FILE

2017-10-05 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi, I deleted your original post as it contains private information. In the future, please do not send confidential information. You can check our posting guidelines before you post. In regar

Re: Where can I check the adjusted bid I made in a placement?

2017-10-05 Thread 'Vincent Racaza (AdWords API Team)' via AdWords API Forum
Hi Ben, I was able to replicate your issue in my test account. This was due to incorrect variable referencing in your code. Please see updates below in your PHP code (in *bold*) which works successfully on my end: public static function runExample(AdWordsServices $adWordsServices, AdWords

Re: How to increase bid on a placement.

2017-10-05 Thread bruce
Hi Peter, I am still confused on adjusting the bidding in a placement. I am getting an error. *Fatal error*: Call to a member function mutate() on null. Please check my code below if I am doing it right. get($session, AdGroupCriterionService::class); //Create a mobile platform. The ID can b