Re: Upload Offline Conversion migration to V9

2022-02-15 Thread MWA
Someone please help me. On Monday, February 14, 2022 at 8:19:01 PM UTC+5 MWA wrote: > Hello, > I used to upload offline conversion using following code in v201809 > version as provided at > > https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201

Upload Offline Conversion migration to V9

2022-02-14 Thread MWA
Hello, I used to upload offline conversion using following code in v201809 version as provided at https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201809/Remarketing/UploadOfflineConversions.php $oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build();

Re: Revoking invitations

2020-07-02 Thread MWA
look into this and remove the request from web interface ASAP too. Thanks. On Monday, June 22, 2020 at 6:49:07 PM UTC+5, MWA wrote: > > Hi, > > I want to revoke the invitation via API. My code is > > $oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build(

Revoking invitations

2020-06-22 Thread MWA
Hi, I want to revoke the invitation via API. My code is $oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build(); $session = (new AdWordsSessionBuilder())->fromFile()->withOAuth2Credential( $oAuth2Credential)->build(); $adWordsServices=new AdWordsServices();

Re: Download Call Extensions data

2017-11-07 Thread MWA
the ad URL for call extension ad. On Thursday, November 2, 2017 at 6:20:05 PM UTC+5, MWA wrote: > > Hi, > > I'm trying to download call extensions from my account via code given below > > > $oAuth2Credential = (new > OAuth2TokenBuilder())->fromFile()->build

Re: Download Call Extensions data

2017-11-03 Thread MWA
Ok thanks. One related question more, if someone taps on call extension ad on mobile devices and make a call then this click will be available on CLICK_PERFORMANCE_REPORT or not? On Thursday, November 2, 2017 at 6:20:05 PM UTC+5, MWA wrote: > > Hi, > > I'm trying to download cal

Re: Download Call Extensions data

2017-11-02 Thread MWA
Hi thank you for replying. Please tell me PLACEHOLDER_FEED_ITEM_REPORT report is real time, mean if a click occurs and I download report within a minute that click will be available in this report or not? if not how often this report is being updated? On Thursday, November 2, 2017 at 7:34:49

Download Call Extensions data

2017-11-02 Thread MWA
Hi, I'm trying to download call extensions from my account via code given below $oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build(); $session = (new

OfflineConversionFeed Error

2017-10-23 Thread MWA
Hi, I'm trying to push offline conversion on behalf of my clients. $oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build(); $session = (new

Re: Error Handling in new Adwords API v201708

2017-10-17 Thread MWA
I got it, I didn't added *use Google\AdsApi\AdWords\v201708\cm\ApiException;* now its working. Thanks. On Friday, October 13, 2017 at 5:57:07 PM UTC+5, MWA wrote: > > Hi, > Can anyone tell me how to handle errors on new Adwords API v201708? > Here is my code, I can not catch ex

Re: Error Handling in new Adwords API v201708

2017-10-17 Thread MWA
If I apply try catch on get service nothing changes. try{ $page = $campaignService->get($selector); } catch (ApiException $apiException) { print_r($apiException); } -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

Re: Error Handling in new Adwords API v201708

2017-10-17 Thread MWA
ector->setPredicates([new Predicate('Status', PredicateOperator::IN, ['ENABLED', 'PAUSED', 'REMOVED'])]); $page = $campaignService->get($selector); On Friday, October 13, 2017 at 5:57:07 PM UTC+5, MWA wrote: > > Hi, > Can anyone tell me how to handle errors on new Adwords API v20170

Re: Error Handling in new Adwords API v201708

2017-10-16 Thread MWA
oogleads/googleads-php-lib/src/Google/AdsApi/Common/Util/Reflection.php* on line *39* Can we catch this error somehow, so that other clients don't get effected? Thanks. On Friday, October 13, 2017 at 5:57:07 PM UTC+5, MWA wrote: > > Hi, > Can anyone tell me how to handle errors on new

Re: how can i get customer client id which is linked my MCC account using adwords api ????

2017-10-13 Thread MWA
Hi n, When getting account under your manager accounts you don't need to add ->withClientCustomerId('xxx-xxx-xxx') // this is my manager account id Try without it. use this function only when you want to access your customers data. currently you want to access your data, that's

Re: Cannot link Manager and customer account using mutateLink

2017-10-13 Thread MWA
Use this code: $link = new ManagedCustomerLink(); $link->setManagerCustomerId($managerid); $link->setClientCustomerId($customerid); $link->setLinkStatus(LinkStatus::PENDING); $linkop = new LinkOperation(); $linkop->setOperator(Operator::ADD); $linkop->setOperand($link); $operations =

Error Handling in new Adwords API v201708

2017-10-13 Thread MWA
Hi, Can anyone tell me how to handle errors on new Adwords API v201708? Here is my code, I can not catch exception I've tried these possibilities. My code is working fine but if there is an error I want to handle it. Code: $oAuth2Credential = (new OAuth2TokenBuilder())->fromFile()->build();

AdGroupAdService is not returning all ads.

2016-09-15 Thread MWA
Hi, I am downloading Ads details using php client library. The way I'm doing it is first download ads stats using awql $reportQuery = "SELECT

Differnce in Google Call Time

2016-03-19 Thread MWA
Hi, I'm using Google Adwords CallOnly campaign with Google Call Tracking feature, for that I'm using Twilio's number. It works like a visitor searches for a keyword on mobile devices, Google shows my Twilio number which I've provided, when a visitor clicks a different number shows up on

Is it possible to download Customized Reports from Adwords via API?

2016-03-04 Thread MWA
Hi, I have created a custom report in Reports menu of Adwords Account. I want to know is it possible to download this report via Adwords API? Thank you in advance. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+:

Re: ManagedCustomerService gives An AuthenticationError.CLIENT_CUSTOMER_ID_IS_REQUIRED Error

2015-04-21 Thread MWA
I am using PHP client library. I assume you are talking about auth.ini and section ; Uncomment to make requests against a client account. ; clientId = INSERT_CLIENT_CUSTOMER_ID_HERE I have a question do I have to change it every time I download adwords data of a client? And this is my client's

Re: ManagedCustomerService gives An AuthenticationError.CLIENT_CUSTOMER_ID_IS_REQUIRED Error

2015-04-21 Thread MWA
Thank you very much it worked. After I set clientCustomerId to my MCC Id in auth.ini On Thursday, April 9, 2015 at 11:59:48 AM UTC+5, Aswini wrote: Hi I got CLIENT_CUSTOMER_ID_IS_REQUIRED Error Error ManagedCustomerService in .net Client library. please check the code below

Re: ManagedCustomerService gives An AuthenticationError.CLIENT_CUSTOMER_ID_IS_REQUIRED Error

2015-04-20 Thread MWA
Hi I have a same problem in and I'm using PHP. I cannot figure out the problem. My code is same as here https://github.com/googleads/googleads-php-lib/blob/master/examples/AdWords/v201502/AccountManagement/GetAccountHierarchy.php $user = new AdWordsUser(); $user-LogDefaults(); // Get the

Re: AdGroupAdService not providing all Ads - v201406

2014-07-21 Thread MWA
Does not anybody face this issue so far? On Friday, July 18, 2014 11:56:24 AM UTC+5, MWA wrote: Hi, I am trying to retreive Ads data from adwords API v201406. I am getting stats like this $reportQuery = SELECT AveragePosition,AverageCpc,AverageCpm,Impressions,Clicks,Cost,Ctr

Re: AdGroupAdService not providing all Ads - v201406

2014-07-21 Thread MWA
First of all Thank you for replying. No. There is no Shared Ads. Shared library Ads says: You haven't created any shared ads yet. Click + List above to get started. On Friday, July 18, 2014 11:56:24 AM UTC+5, MWA wrote: Hi, I am trying to retreive Ads data from adwords API v201406. I am

AdGroupAdService not providing all Ads - v201406

2014-07-18 Thread MWA
Hi, I am trying to retreive Ads data from adwords API v201406. I am getting stats like this $reportQuery = SELECT AveragePosition,AverageCpc,AverageCpm,Impressions,Clicks,Cost,Ctr,Conversions,ConversionRate,CostPerConversion,

Re: Download Adwords Express Account Data

2014-05-22 Thread MWA
,MaxCpm,KeywordText FROM KEYWORDS_PERFORMANCE_REPORT WHERE Impressions 0 DURING 20140515,20140515 LIMIT 0,5000 On Wednesday, May 21, 2014 6:17:11 PM UTC+5, MWA wrote: Hi I am downloading Adwords data through API of an dwords Express Account. I have some problems

Download Adwords Express Account Data

2014-05-21 Thread MWA
Hi I am downloading Adwords data through API of an dwords Express Account. I have some problems CAMPAIGN_PERFORMANCE_REPORT gives me extra campaigns like AWX_002:683f14cedc4ea0c0_0001aeb3_content And KEYWORDS_PERFORMANCE_REPORT is not providing me all keywords. Adwords interface

Error Fetching http body, No Content-Length, connection closed or chunked data - Adwords API Data Download

2014-03-21 Thread MWA
Hi, I'm trying to download reports data in a client account but I get the following error: SoapFault Object ( [message:protected] = Error Fetching http body, No Content-Length, connection closed or chunked data [string:Exception:private] = [code:protected] = 0

Re: Problem with fetching data for a particular date (Cron job PHP v201309)

2013-12-30 Thread MWA
I am using this to Get campaign stats like Clicks, Conversions, Impressions etc $campaignService = $user-GetService('CampaignService', ADWORDS_VERSION); On Thursday, December 26, 2013 1:26:52 PM UTC+5, Danial Klimkin wrote: Hello MWA, What is the report type you are running? -Danial

Downloading reporting data for an specific date PHP v201309

2013-12-30 Thread MWA
Hi There Any one has idea about getting Converions,Impressions,Clicks etc data for a given date using PHP API v201309? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://googleadsdeveloper.blogspot.com

Re: Downloading reporting data for an specific date PHP v201309

2013-12-30 Thread MWA
For example if I am using CampaignService: $campaignService = $user-GetService('CampaignService', ADWORDS_VERSION); On Monday, December 30, 2013 5:14:49 PM UTC+5, MWA wrote: Hi There Any one has idea about getting Converions,Impressions,Clicks etc data for a given date using PHP API

Re: PHP API version v201306 giving Error : [RequestError.INVALID_INPUT @ ; trigger:'You are accessing an AdWords API version v201302

2013-11-27 Thread MWA
Yes you are right I did the same I got it working now Finally. :) On Tuesday, November 26, 2013 1:36:52 PM UTC+5, MWA wrote: Hi there, I am using Adwords PHP API version v201306 but why randomly I am getting the following msg. What is with v201302 here when I am clearly using v201306

Re: PHP API version v201306 giving Error : [RequestError.INVALID_INPUT @ ; trigger:'You are accessing an AdWords API version v201302

2013-11-27 Thread MWA
Searched it over the web and found this solution http://code.google.com/p/google-api-adwords-php/issues/detail?id=115 On Tuesday, November 26, 2013 1:36:52 PM UTC+5, MWA wrote: Hi there, I am using Adwords PHP API version v201306 but why randomly I am getting the following msg. What

Re: PHP API version v201306 giving Error : [RequestError.INVALID_INPUT @ ; trigger:'You are accessing an AdWords API version v201302

2013-11-27 Thread MWA
. If you indeed receive this error from a v201306 call please send me full XML for the request and full server response over email (reply to author button). -Danial, AdWords API Team. On Tuesday, November 26, 2013 12:36:52 PM UTC+4, MWA wrote: Hi there, I am using Adwords PHP API version

PHP API version v201306 giving Error : [RequestError.INVALID_INPUT @ ; trigger:'You are accessing an AdWords API version v201302

2013-11-26 Thread MWA
Hi there, I am using Adwords PHP API version v201306 but why randomly I am getting the following msg. What is with v201302 here when I am clearly using v201306. Also the following msg appearing randomly. [RequestError.INVALID_INPUT @ ; trigger:'You are accessing an AdWords API version v201302

Geo/Mobile Bid Formula Adords API PHP (v201306)

2013-11-05 Thread MWA
Hi there, What I see at the interface is when it sets the mobile/Geo bid in percentage, say +2% makes the 'bidModifier' totally different from the one we are trying to set Via API, Should I have to multiply the percentage to the maxCpc? but how to get cmapaign level maxCPC starting bid for as

Re: Edit Geo BId Adjustment (Required Minimum functionality) PHP v201306

2013-11-01 Thread MWA
Thanx, but it gives me an array of several Locations, I want to know what action do i need to perform Geo Bid Adjustment 'Required Minimum Functionality'? What to Edit here since everything is read only? On Monday, October 28, 2013 9:31:41 PM UTC+5, MWA wrote: Hi There, Can some one guide

Edit Geo BId Adjustment (Required Minimum functionality) PHP v201306

2013-10-28 Thread MWA
Hi There, Can some one guide me how to Edit geo bid adjustment using PHP API I tried using the following code but no avail, firstly I am trying to get the Location Info then add/Set/Edit them. $user = new AdWordsUser(null,null,null,null,null,null,$adwordId); $user-LogDefaults();

Re: 201306 PHP API criterion bid changing Error

2013-10-11 Thread MWA
, October 11, 2013 3:19:15 PM UTC+5, MWA wrote: Hello there, I am using the following code ADWORDS_VERSION = v201306 $AdGroupCriterionService = $user-GetService('AdGroupCriterionService', ADWORDS_VERSION); //$bids = new ManualCPCAdGroupCriterionBids(); //$bids = $user

Re: How much time it requires to approve Standard Access Application?

2013-08-31 Thread MWA
Hi, Thank you for reply. I am fetching data like this $adGroupService = $user-GetService('AdGroupService', 'v201306'); $selector = new Selector(); $selector-fields = array('Id', 'Name','CampaignId','CampaignName','Status'); And I think I was supposed to enter Field Names from

Re: How much time it requires to approve Standard Access Application?

2013-08-30 Thread MWA
)ClickType R.510Keyword (Report)Avg Position Avg Position can be retrieved by 'AveragePosition', But I don't know how do I retrieve 'Ad Network' and 'ClickType' of AdGroup and Campaign. Please Help... On Wednesday, July 10, 2013 2:26:15 PM UTC+5, MWA wrote: Hi, About a month ago

Re: How much time it requires to approve Standard Access Application?

2013-07-15 Thread MWA
resolve this? Thanks so much! On Wednesday, July 10, 2013 2:26:15 PM UTC+5, MWA wrote: Hi, About a month ago (on 12 jun 2013) I applied for Standard Access and I did not get any response to my application. Is there a review process and how long does it take to get the review result? I

Re: How much time it requires to approve Standard Access Application?

2013-07-15 Thread MWA
clients. Can you please help resolve this? Thanks so much! On Wednesday, July 10, 2013 2:26:15 PM UTC+5, MWA wrote: Hi, About a month ago (on 12 jun 2013) I applied for Standard Access and I did not get any response to my application. Is there a review process and how long does it take

How much time it requires to approve Standard Access Application?

2013-07-10 Thread MWA
Hi, About a month ago (on 12 jun 2013) I applied for Standard Access and I did not get any response to my application. Is there a review process and how long does it take to get the review result? I also contacted at adwordsapi-tok...@google.com and no reply. Should I re-apply or wait?

File Not found - Google/Api/Ads/Common/Util/Logger.php

2013-07-08 Thread MWA
Hi, I'm trying to get campaign and php returns error *Warning*: require_once(Google/Api/Ads/Common/Util/Logger.php) [ function.require-oncehttp://avidtrak2.com/adwords_api/function.require-once]: failed to open stream: No such file or directory in *

How to send invitation using API

2012-11-13 Thread MWA
Hi, I want to automate the procedure to link adwords account to my MCC account. Please tell me is there any way to do it? -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api

Re: campaignStats object returning blank values

2012-03-14 Thread MWA
Anybody here to help me On Tuesday, March 13, 2012 8:42:07 PM UTC+5, MWA wrote: Hi, I'm trying to get clients data but campaignStats object returning blank values. My resulting array is as follows I'm using v201109 PHP Client Library. [0] = Campaign Object ( [id

Re: Campaign stats are NULL

2012-03-14 Thread MWA
*@**AdWords API Advisor* Please help me. URL of my question is given below. https://groups.google.com/forum/?hl=enfromgroups#!topic/adwords-api/L0YGEE5Jiso Thanks. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com