Re: error concerning 24 hours delay after posting

2016-06-15 Thread 'Shwetha Vastrad (AdWords API Team)' via AdWords API Forum
Hi Karl,

You could consider setting up conversion tracking 
 on 
your website. If this is not an option, you *have *to wait the required 
amount of time for the information to propagate in the system when you 
import conversions. Once the UploadConversion 

 object 
is created, it is recommended 

 that 
you wait 6 hrs before you upload the conversions.

The current thread is more than two years old. Please create a new thread 
in the future to avoid spam of the original topic participants.

Regards,
Shwetha, AdWords API Team.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/6be17846-5594-430b-b232-53017f07c602%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: error concerning 24 hours delay after posting

2016-06-06 Thread Karl Adler
Is there any possibility to push a conversions trough the API without 
waiting such a long time? (Doesn't needs to be a offline conversion) We 
would like to push it as soon as possible after the conversion has been 
done.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5e54766e-7c63-427f-b5fc-e942e240d49c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: error concerning 24 hours delay after posting

2014-03-19 Thread Danial Klimkin
Hello Toby,


It can be a few hours delay between an actual click and all related data to 
be populated for all internal systems. We recommend 24 hours to make sure 
all such processes are finished.


-Danial, AdWords API Team.


On Wednesday, March 19, 2014 5:06:14 AM UTC+4, Toby Gran wrote:

 Dear Google Support Representative,

 Thank you for your help.  We were able to connect to Adwords.

 However, subsequently we experienced another error.

 When our developer tried to add offline conversion to our adwords he 
 received the following error
 {[OfflineConversionError.TOO_RECENT_CLICK @ operations[0].operand]}

 It seems that according to Adwords guidelines, it means that we try to 
 post offline conversion too fast.
 In other words, Adwords interface guidelines require us to post it after 
 24 hours.  

 This seems like a strange requirement.  Maybe we didn't understand it 
 correctly.  
 It was my impression that posting could be done immediately.  It's only 
 reporting lags 3 hours behind.


 Any advise would be greatly appreciated,

 Thank you


 //https://developers.google.com/api-client-library/dotnet/guide/aaa_oauth
  String conversionName = signUp ? PR_SignUP_IMP : PR_SignIN_IMP;
  
 // Conversion time should be higher than the click time.
  String conversionTime = DateTime.Local.ToString(MMdd HHmmss zzz;); 
 //;Double.valueOf(INSERT_CONVERSION_VALUE_HERE;)
  Double conversionValue = 50;
  

  Google.Api.Ads.AdWords.Lib.AdWordsUser user = new 
 Google.Api.Ads.AdWords.Lib.AdWordsUser();
  // Override specific configuration at runtime.
  AdWordsAppConfig config = user.Config as AdWordsAppConfig;
  
 config.ClientCustomerId = 000-111-;
  config.DeveloperToken = abracadabraabracadabra;
  config.UserAgent = *** User Managment;
  
 config.AuthorizationMethod = AdWordsAuthorizationMethod.ClientLogin;
  config.OAuth2Mode = Google.Api.Ads.Common.Lib.OAuth2Flow.APPLICATION;
  
 config.Email = *@gmail.com;
  config.Password = ;
  

 OfflineConversionFeedService offlineConversionFeedService = 
 user.GetService(AdWordsService.v201309.OfflineConversionFeedService) as 
 OfflineConversionFeedService;
  
 //Associate offline conversions with the upload conversion we created.
  OfflineConversionFeed feed = new OfflineConversionFeed();
  feed.conversionName = conversionName;
  feed.conversionTime = conversionTime 
 feed.conversionValue = conversionValue;
  feed.googleClickId = gclId;
  
 OfflineConversionFeedOperation offlineConversionOperation =
  new OfflineConversionFeedOperation();
  offlineConversionOperation.@operator = Operator.ADD;
  offlineConversionOperation.operand = feed;
  OfflineConversionFeedReturnValue offlineConversionRetval =
  offlineConversionFeedService.mutate(
  new OfflineConversionFeedOperation[] { offlineConversionOperation });
  
 OfflineConversionFeed newFeed = offlineConversionRetval.value[0];
  
 Console.WriteLine(Uploaded offline conversion value of {0} for Google 
 Click ID =  +
  '{1}' to '{2}'., newFeed.conversionValue, newFeed.googleClickId,
  newFeed.conversionName);


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.


error concerning 24 hours delay after posting

2014-03-18 Thread Toby Gran
Dear Google Support Representative,

Thank you for your help.  We were able to connect to Adwords.

However, subsequently we experienced another error.

When our developer tried to add offline conversion to our adwords he 
received the following error
{[OfflineConversionError.TOO_RECENT_CLICK @ operations[0].operand]}

It seems that according to Adwords guidelines, it means that we try to post 
offline conversion too fast.
In other words, Adwords interface guidelines require us to post it after 24 
hours.  

This seems like a strange requirement.  Maybe we didn't understand it 
correctly.  
It was my impression that posting could be done immediately.  It's only 
reporting lags 3 hours behind.


Any advise would be greatly appreciated,

Thank you


//https://developers.google.com/api-client-library/dotnet/guide/aaa_oauth
 String conversionName = signUp ? PR_SignUP_IMP : PR_SignIN_IMP;
 
// Conversion time should be higher than the click time.
 String conversionTime = DateTime.Local.ToString(MMdd HHmmss zzz;); 
//;Double.valueOf(INSERT_CONVERSION_VALUE_HERE;)
 Double conversionValue = 50;
 

 Google.Api.Ads.AdWords.Lib.AdWordsUser user = new 
Google.Api.Ads.AdWords.Lib.AdWordsUser();
 // Override specific configuration at runtime.
 AdWordsAppConfig config = user.Config as AdWordsAppConfig;
 
config.ClientCustomerId = 000-111-;
 config.DeveloperToken = abracadabraabracadabra;
 config.UserAgent = *** User Managment;
 
config.AuthorizationMethod = AdWordsAuthorizationMethod.ClientLogin;
 config.OAuth2Mode = Google.Api.Ads.Common.Lib.OAuth2Flow.APPLICATION;
 
config.Email = *@gmail.com;
 config.Password = ;
 

OfflineConversionFeedService offlineConversionFeedService = 
user.GetService(AdWordsService.v201309.OfflineConversionFeedService) as 
OfflineConversionFeedService;
 
//Associate offline conversions with the upload conversion we created.
 OfflineConversionFeed feed = new OfflineConversionFeed();
 feed.conversionName = conversionName;
 feed.conversionTime = conversionTime 
feed.conversionValue = conversionValue;
 feed.googleClickId = gclId;
 
OfflineConversionFeedOperation offlineConversionOperation =
 new OfflineConversionFeedOperation();
 offlineConversionOperation.@operator = Operator.ADD;
 offlineConversionOperation.operand = feed;
 OfflineConversionFeedReturnValue offlineConversionRetval =
 offlineConversionFeedService.mutate(
 new OfflineConversionFeedOperation[] { offlineConversionOperation });
 
OfflineConversionFeed newFeed = offlineConversionRetval.value[0];
 
Console.WriteLine(Uploaded offline conversion value of {0} for Google 
Click ID =  +
 '{1}' to '{2}'., newFeed.conversionValue, newFeed.googleClickId,
 newFeed.conversionName);

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.