Re: CLICK_MISSING_CONVERSION_LABEL persistent issue

2014-11-07 Thread Nypo77
Hi Josh!

Thank you for the answer. Seems like I didn't exactly unserstood the 
official docs so thanks for the explanations.

The conversion upload works now well. As you said, I have problems when I 
upload conversion BEFORE the (re)creation of the conversion type, but work 
now fine for conversion AFTER it. Nevertheless, there was a time period 
(about 1 day) that was needed for the label to become reachable 'alive'.

Thanks again!
*--Steve*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b69e267c-ede6-46ad-9cdb-a0c4ac451177%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


CLICK_MISSING_CONVERSION_LABEL persistent issue

2014-11-06 Thread Nypo77
Hello dear community,

My tool is uplaoding offline conversions to client's adwords account. For 
quite a time and for many account this is working nicely except for a 
recent client.

When the user activate this feature in my tool I automatically create an 
offline conversion type:

$uploadConversion = new UploadConversion();
$uploadConversion-category = 'DEFAULT';
$uploadConversion-name = 'Call Conversion - '.$host;
$uploadConversion-viewthroughLookbackWindow = 30;
$uploadConversion-ctcLookbackWindow = 90;

$uploadConversionOperation = new \ConversionTrackerOperation();
$uploadConversionOperation-operator = 'ADD';
$uploadConversionOperation-operand = $uploadConversion;

$uploadConversionOperations = array($uploadConversionOperation);

$result = 
$conversionTrackerService-mutate($uploadConversionOperations);

This worked well, the client could see the conversion type appearing in his 
account using OfflineConversionFeedService:
   
$feed = new \OfflineConversionFeed();
$feed-googleClickId= $gClId;
$feed-conversionName   = 'Call Conversion - '.$host;
$feed-conversionTime   = $conversionTime. 
.$this-getAdwordsTimeZone(); // startCall + timezone
$feed-conversionValue  = $conversionValue; // revenue

$offlineConversionOperation = new 
\OfflineConversionFeedOperation();
$offlineConversionOperation-operator   = 'ADD';
$offlineConversionOperation-operand= $feed;

// add to main array
$offlineConversionOperations[] = $offlineConversionOperation;

$result = 
$offlineConversionService-mutate($offlineConversionOperations); 

  
Then I started uloading the offline conversions and began to receive: 
OfflineConversionError.CLICK_MISSING_CONVERSION_LABEL 
@ operations[XXX].operand  

The client deleted the conversion type manually, I recreated it, but still 
the same error. This is for 2 days now, uploading the conversions once 
every hour.

I did check the offical troubleshooter. The conversion type is enabled. 

Any hint is welcome!
Thanks ahead!
---*Steve*



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/713a0a30-4d45-48d1-9216-175ec8b3b147%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Offline Conversion: only 2/3 of uploaded data appear in Adwords

2014-05-21 Thread Nypo77
Dear Ray,

Only now could I get back with an update. 

I took you advice, set the timezone as it should be (timezone of client's 
account same as the timezone I specify in the objcet that is upoaded). 
I also discovered an error of mine, I was sending multiple conversions with 
the same conversion time (1 gclid with multiple conversions but the same 
conversion time) and sure they were ignoredI fixed this 2 week ago.

So fixing everything I could I still face the same issue. Client still 
report missing number of conversions.

For example: 
 2014-05-16  Friday: 124 conversions  --- I uploaded: 168 (no 
errors whatsoever)
 2014-05-16  Saturday: 250 conversions  --- I uploaded: 333 (no 
errors)

This is an actual example of what am I uploading to Google. This is an 
example of a multiple conversion (1 gclid with 3 conversions), but of 
course not every conversion I upload is multiple...


[159]=
  object(OfflineConversionFeedOperation)#1784 (4) {
[operand]=
object(OfflineConversionFeed)#1783 (4) {
  [googleClickId]=
  string(26) CP24-uq3sb4CFWgUwwodiXcAFA
  [conversionName]=
  string(37) Call Conversions - domain.com
  [conversionTime]=
  string(28) 20140516 235802 Europe/Paris
  [conversionValue]=
  float(1.177)
}
[operator]=
string(3) ADD
[OperationType]=
NULL
[_parameterMap:Operation:private]=
array(1) {
  [Operation.Type]=
  string(13) OperationType
}
  }
[166]=
  object(OfflineConversionFeedOperation)#1798 (4) {
[operand]=
object(OfflineConversionFeed)#1797 (4) {
  [googleClickId]=
  string(26) CP24-uq3sb4CFWgUwwodiXcAFA
  [conversionName]=
  string(37) Call Conversions - domain.com
  [conversionTime]=
  string(28) 20140516 235714 Europe/Paris
  [conversionValue]=
  float(1.177)
}
[operator]=
string(3) ADD
[OperationType]=
NULL
[_parameterMap:Operation:private]=
array(1) {
  [Operation.Type]=
  string(13) OperationType
}
  }
  [167]=
  object(OfflineConversionFeedOperation)#1800 (4) {
[operand]=
object(OfflineConversionFeed)#1799 (4) {
  [googleClickId]=
  string(26) CP24-uq3sb4CFWgUwwodiXcAFA
  [conversionName]=
  string(37) Call Conversions - domain.com
  [conversionTime]=
  string(28) 20140516 235954 Europe/Paris
  [conversionValue]=
  float(1.611)
}
[operator]=
string(3) ADD
[OperationType]=
NULL
[_parameterMap:Operation:private]=
array(1) {
  [Operation.Type]=
  string(13) OperationType
}
  }

I must mention that every hour I launch this uploader. I fetch conversions 
with 4 hours delay and for a 2 days period and sent it to upload. So 
basically 90% of the data is the same every time, but this ensures me I do 
not loose any conversion...at least on my side

Any idea, correction I welcomed and greatly appreciated!!

Thanks, 
*---Steve*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Offline Conversion: only 2/3 of uploaded data appear in Adwords

2014-05-21 Thread Nypo77
Dear Ray!

I only now could get back to you with the results.

I applied your suggestion regarding the timezone. Also I found a bug I had 
with uploading multiple conversions with accidentally the same conversions 
time, so these were ignored (same gclid with same conversion time is taken 
in account only once)...also, I realized there is a time Google needs to 
show all conversions in the Adwords interface...so all these probably 
counted to have my issue fixed and have a happy client now :)

Thank you for the input!
Kindest regards,
*---Steve*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: PHP example for using HourOfDay

2014-04-25 Thread Nypo77
Hi Danial,

it is working now! 
Honestly, I don't really know what I was doing wrong, maybe by mistake I 
did call the wrong report?? I remember checking that tooanyway, It is 
working nicely, I see the data / hour coming.

Appreciate your assistance and input!

Thank you
*,--Steve*


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: PHP example for using HourOfDay

2014-04-23 Thread Nypo77
Hi Danial!

Thank you for your answer!

I tried the suggestion and this is what I get:

   Report download failed. Underlying errors are Type = 
'ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT', Trigger = 
'HourOfDay', FieldPath = ''. 


Thank you!
*--Steve*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Offline Conversion: only 2/3 of uploaded data appear in Adwords

2014-04-22 Thread Nypo77
Thank you Ray!

I am doing the upgrade and hopefully this will solve the issues. Will get 
back with the result as soon as I have client's feedback.

Thanks,
*--Steve*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


PHP example for using HourOfDay

2014-04-22 Thread Nypo77
Dear Community,

I am downloading a CAMPAIGN PERFORMANCE REPORT for a period of 1 day, and 
this works just fine. 

Here is the code how I do the setup for the it:

// Create selector.
$selector = new \Selector();
$selector-fields = array('Date', 'Id', 'TotalCost');

// Filter
$selector-predicates[] = new \Predicate('Id', 'IN', 
['campaignid1', 'campaignid2', ...]);
$selector-predicates[] = new \Predicate('Clicks', 'GREATER_THAN', 
0);

// create daterange
$dateRange = new \DateRange();
$dateRange-min = $date-format('Ymd');
$dateRange-max = $date-format('Ymd');
$selector-dateRange = $dateRange;

// Create report definition.
$reportDefinition = new \ReportDefinition();
$reportDefinition-selector = $selector;
$reportDefinition-reportName = 'Campaign Performance Report #' . 
uniqid();
$reportDefinition-dateRangeType = 'CUSTOM_DATE';
$reportDefinition-reportType = 'CAMPAIGN_PERFORMANCE_REPORT';
$reportDefinition-downloadFormat = 'XML';
$reportDefinition-includeZeroImpressions = FALSE;

// options for report call
$options = array('version' = 'v201309', 'returnMoneyInMicros' = 
FALSE);

and then I do the request and it works fine.

Nevertheless with new features requested for my application I need to 
segment this data on a hourly basis. 
I found on several forum entries that it is possible (here for example: 
*https://groups.google.com/forum/#!newtopic/adwords-api/adwords-api/gnmRZZZcPsg*).
 
I checked the specified documentation (
*https://developers.google.com/adwords/api/docs/appendix/reports#campaign*), 
found the *HourOfDay* field, about which was stated that it should segment 
the report per hours.

My issue is that I simply could not find how does it look like in PHP to 
use this HourOfDay. Probably missing something obvoius. I tried several 
ways, I thought would work but with no success.

So can anybody help me out, how to change my above PHP example to be able 
to use this HourOfDay segment?


Thanks a lot!
*--Steve*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Offline Conversion: only 2/3 of uploaded data appear in Adwords

2014-04-17 Thread Nypo77
Hi Ray!

Appreciate your inputs...right now I am using a default timezone (
Europe/Paris), since most of the activity that is going on is in France. 
The time I am sending is the conversion time of the call (actually the end 
of call) which is in the Europe/Paris  timezone.
I should use the account's timezone? For most of the clients the timezone 
is also Europe/Paris.  

Thanks!
*--Steve*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Offline Conversion: only 2/3 of uploaded data appear in Adwords

2014-04-14 Thread Nypo77
Hi!

Thanks for the reply and sorry for the delayed answer.

This is a real example of what I am pushing to upload:

  object(OfflineConversionFeedOperation)#1104 (4) {
[operand]=
object(OfflineConversionFeed)#1103 (4) {
  [googleClickId]=
  string(26) CL2-XX-AcQ
  [conversionName]=
  string(37) Call Conversions - example.com
  [conversionTime]=
  string(28) 20140321 150401 Europe/Paris
  [conversionValue]=
  float(2.83)
}
[operator]=
string(3) ADD
[OperationType]=
NULL
[_parameterMap:Operation:private]=
array(1) {
  [Operation.Type]=
  string(13) OperationType
}
  }

I am sending the GCLID with every uploaded item (I do not push those 
conversion where for some reason I do not know the gclid and conversion 
time), added the timezone, using a delay of 2 hours and a timeframe of 48 
hours for which I read the conversions.
I actually changed the delay to 3 hours (take conversions older then 3 
hours) and I saw a significant drop in the error (this is why I delayed in 
answering). So it seems that most part of the initital error I fixed.

But, asking the clients, they still see the same issue of loosing about 30% 
of the offline conversions. 
For some conversions I do not recieve the search terms. Has this anything 
to do with this 30% loss of conversions somehow? Just trying to figure out, 
hanging onto every possibility..

Thanks ahead!
*--Steve*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Offline Conversion: only 2/3 of uploaded data appear in Adwords

2014-04-09 Thread Nypo77
Hi!

I'm pushing offline conversions to various adwords accounts and having this 
weird issue: only 2/3 of them are actually getting there. 
Not sure what happens with the other 1/3. 

I am repeating the uploading hourly, for the same conversions set taken 
from the last 48 hrs (initially was 24 hrs, I thought that this might 
help), 
thus giving chance for all conversions to be uploaded (even if they appear 
at first with TOO RECENT CLICK error). 

Any idea why this is happening?

Thanks!
--*Steve*

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Offline conversions upload set time zone

2014-02-14 Thread Nypo77
Hi Community!

I am uploading offline conversions to an adwords account, but I became 
aware I need to specify the time zone too to tell Adwords in which time 
zone the conversion happened. 

I read in the documentation for the OfflineConversionFeed (
https://developers.google.com/adwords/api/docs/reference/v201309/OfflineConversionFeedService.OfflineConversionFeed)
 
that: 

  conversionTime:  The time that this conversion occurred 
at. *If a timezone is not specified,* the timezone from the account to 
which this conversion belongs to will be used.

I found the acceptable formats of conversionTime (
https://support.google.com/adwords/answer/2998031?hl=en) but where and how 
to specify the time zone I could not find.

My question is how to specify the timezone in my case? A fairly simple 
thing but I just can't figure it out on my own.


Thanks for your help!
---*Steve*



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Adwords real time data fetching

2014-02-10 Thread Nypo77
Dear Mike,

Thank you for the answer!!!

I must specify that it's not about ads with call extensions, it's basically 
about offline conversions. 
When a user clicks an ad he will get to a page where he might make a call 
on a number he sees in that page. What info I have is the search term, but 
don't have the keyword that triggered that ad, this is what I need. 
I get the call data in real time but I'm missing the adwords keyword. 
If this is not possible to get in real time I'm interested in the next best 
thing. What would you recommend? At the moment through the solution I use 
it takes more than one day to get this keyword by making a complex matching 
between the search terms I have saved locally and the search terms that I 
receive via adwords api reports.

Kindest regards,
Steve

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Adwords real time data fetching

2014-02-04 Thread Nypo77

Hi!

I'm working on an application which is tracking calls and calls conversions 
on the websites of our clients. We also track the visits, referral data, 
etc. Some of these clients are using Adwords. This means that the calls are 
offline conversions for adwords campaigns.

What I'm interested in is how to connect the data from adwords with the 
calls that are made offline. And this in real time or as close as possible 
to real time.

At the moment we use adwords api to download the campaigns, ad groups and 
keywords - these are mostly real time data. However matching the keyword to 
a call is difficult since I do it via the search term which is more than 1 
day delay and not 100% precise (matching the search term report in adwords 
and the search terms from referral info).

Can you suggest better solutions?

I'm thinking of 2, not sure if I'm on the right way or not:
1) to use value tracking feature by modifying the clients ads to obtain the 
keyword/match type/ad group so I could match that to the adwords data I 
receive via api.
Not really a direct way but I think it's promising.

However this means updating all ads of the clients, not sure if this means 
losing the existing stats; also not sure if there is an automatic way to do 
that so the clients does not need to make it automatically for all their 
ads (maybe can be done via scripts or via api?).

2) I also have the gclid parameter - just working to push the offline 
(call) conversions to adwords via api. Not sure if there is a way to get 
back the conversions from adwords? Also this is not getting close to a real 
time solution since pushing the conversion means a 3 hrs delay.

All of your recommendations will be very welcomed. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


GetOAuth2AuthorizationUrl

2013-11-11 Thread Nypo77
Hi there!

I recently upgraded my PHP client lib (to 4.6.1) and suddenly all the 
authorisation process (OAUTH2 stuff) is not working anymore in my web app. 
(to be clear, I am asking authorisation to access clients' Adwords account)

I used GetOAuth2AuthorizationUrl and GetOAuth2AccessToken functions on 
adwordsUser object but now these are gone from the library so I don't know 
now how to make my auth process work (get to the google auth page, do the 
granting and then exchange the received auth code to access token)

So my question is how this auth process should be built using this new lib?

Thank you!
Steve

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Latest Adwords API (201309) update to the official Google composer package?

2013-10-30 Thread Nypo77
Hi guys!

I've just updated my Google Adwords API package (from 
https://packagist.org/packages/google/adwords - to dev-master) and the 
latest API version (201309) is not yet available in it. When will it be 
available?

Thanks ahead!
Steve

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.