Problem with keywords adding in russian language

2014-12-12 Thread Michael Jones
Hello!
I'm trying to add some keywords in my AdWords using PHP language. When I 
add some keywords in english it works fine, but in russian it shows me next 
error message:

Notice: Failed to load response into DOM: DOMDocument::loadXML(): Empty 
string supplied as input in /var/www/html/www3.repka.com.ua/sources/repka/
work/adwords/AdWordsApi/source/src/Google/Api/Ads/Common/Lib/AdsSoapClient.php 
on line 268 Notice: Failed to load request into DOM: DOMDocument::loadXML(): 
Empty string supplied as input in /var/www/html/www3.repka.com.ua/sources/
repka/work/adwords/AdWordsApi/source/src/Google/Api/Ads/Common/Lib/
AdsSoapClient.php on line 275 Notice: Failed to load response into DOM: 
DOMDocument::loadXML(): Empty string supplied as input in /var/www/html/www3
.repka.com.ua/sources/repka/work/adwords/AdWordsApi/source/src/Google/Api/
Ads/Common/Lib/AdsSoapClient.php on line 375 Notice: Failed to load 
response into DOM: DOMDocument::loadXML(): Empty string supplied as input in 
/var/www/html/www3.repka.com.ua/sources/repka/work/adwords/AdWordsApi/source
/src/Google/Api/Ads/Common/Lib/AdsSoapClient.php on line 393[SoapFault] 
SOAP-ERROR: Encoding: string '\xd2...' is not a valid utf-8 string (0)
/var/www/html/www3.repka.com.ua/sources/repka/work/adwords/AdWordsApi/source
/src/Google/Api/Ads/Common/Lib/AdsSoapClient.php:232
#0: SoapClient->__soapCall(string, array, NULL, array, array)
 /var/www/html/www3.repka.com.ua/sources/repka/work/adwords/AdWordsApi/
source/src/Google/Api/Ads/Common/Lib/AdsSoapClient.php:232
#1: AdsSoapClient->__soapCall(string, array)
 /var/www/html/www3.repka.com.ua/sources/repka/work/adwords/AdWordsApi/
source/src/Google/Api/Ads/AdWords/v201409/AdGroupCriterionService.php:9936
#2: AdGroupCriterionService->mutate(array)
 /var/www/html/www3.repka.com.ua/sources/repka/work/adwords/index.php:212


Bellow You can see example of my code:

$adGroupId = 1648319; 
$adGroupId = (float)$adGroupId; 
$user = new AdWordsUser(); 
$user->LogAll();


$word = "Ключевое слово"; // error, but with $word = "Keyword"; it works 
fine

$adGroupCriterionService = $user->GetService('AdGroupCriterionService', 
'v201409');
// Create keyword criterion.
$keyword = new Keyword();
$keyword->text = $word;
$keyword->matchType = 'BROAD';
 
// Create biddable ad group criterion.
$adGroupCriterion = new BiddableAdGroupCriterion();
$adGroupCriterion->adGroupId = $adGroupId;
$adGroupCriterion->criterion = $keyword;
 
// Set additional settings (optional).
$adGroupCriterion->userStatus = 'PAUSED';
$adGroupCriterion->destinationUrl = 
'https://repka.ua/noutbuki/asus-s301lp-s301lp-c1010h-92202/';
 
$adGroupCriteria[] = $adGroupCriterion;
//var_dump($adGroupCriteria);
 
// Create operation.
$operation = new AdGroupCriterionOperation();
$operation->operand = $adGroupCriterion;
$operation->operator = 'ADD';
$operations[] = $operation;
 
 
$result = $adGroupCriterionService->mutate($operations);
 
// Display results.
foreach ($result->value as $adGroupCriterion) {
 printf("Keyword with text '%s', match type '%s', and ID '%s' was added.\n",
 $adGroupCriterion->criterion->text,
 $adGroupCriterion->criterion->matchType,
 $adGroupCriterion->criterion->id);
}


I'm using php file in utf-8 encoding and my $word variable contains utf-8 
string.

Tell me please how can I solve this problem? Thanks!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/122dffc3-d4b7-49c2-b724-a49378401fd2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Click counts are low in keyword performance report

2014-12-12 Thread David
I've inherited an application where the online data will show some number 
of clicks and impressions.  My application runs the keyword performance 
report, and the impressions are the same as online, but the clicks are low 
by 1 or 2 compared to the adwords interface.

Where is the right place to look for those clicks?  What can cause 
discrepancies in the click counts from the API to the adwords interface?

I'm told that my report should be the same or higher than adwords, but 
never lower.

thanks

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/b22d04c1-91ca-4f55-b56c-c3e2b663aba6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: ACCOUNT_PERFORMANCE_REPORT Reach and Frequency

2014-12-12 Thread Anash P. Oommen (AdWords API Team)
Hi Joseph,

I don't think this field is available through AdWords API yet.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Wednesday, December 10, 2014 11:23:59 PM UTC-5, Joseph Tay wrote:
>
> Hi,
>
> I need to find the equivalent of the *Unique Cookies* and Avg. impr. 
> freq. per cookie metrics (that is available in the AdWords Web UI) through 
> the AdWords API.
>
> I would prefer it to be on a Campaign or Account level and it must be 
> broken down by months.
>
> I have looked at ACCOUNT_PERFORMANCE_REPORT 
> and CAMPAIGN_PERFORMANCE_REPORT in 
> https://developers.google.com/adwords/api/docs/appendix/reports but I 
> cannot find anything similar. Is the metrics not available yet?
>
> I also cannot use the deprecated Reach Reports as they are on a per day 
> basis and throw out odd numbers.
>
> Thanks for the help >.<
>
> Joseph
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/728147ba-6385-4a79-8937-0bb5f720ba08%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Why aren't all of my products searchable in Google Shopping?

2014-12-12 Thread Michael Cloonan (AdWords API Team)
Hello,

This forum is for help with the Google AdWords API. Your question doesn't 
seem related to the AdWords API. If your question is relevant to the Google 
Content API for Shopping, you could ask on their forum 

.

Regards,
Mike, AdWords API Team

On Friday, December 12, 2014 7:39:02 AM UTC-5, Laura E. DelVecchio wrote:
>
> I've have over 630 products and when I checked on my Google Shopping to 
> see how many items are searchable it tells me only 58 are searchable. Why 
> aren't all of my items searchable??
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/1e07cd31-adb7-420d-ba1b-7391e78570da%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: delete inactive product from google marchant center through php

2014-12-12 Thread Josh Radcliff (AdWords API Team)
Hi,

This forum is for questions on the AdWords API. For questions related to 
Merchant Center and the Content API, please post to the Content API Forum 
.

Thanks,
Josh, AdWords API Team

On Friday, December 12, 2014 8:05:21 AM UTC-5, san...@ergodesoft.com wrote:
>
> 1) i like to delete the inactive(disapproved) product from google marchant 
> account but i can fetch records through google api in php but i am not able 
> to fine where which product is disapproved or inactive.
> can any one help to know how should i select inactive product then i can 
> delete it through api(programatically)
>
>
> thank you
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d3dc4c35-b1bb-405a-9fb4-5467e13e2d8b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting the Change History via the API

2014-12-12 Thread Josh Radcliff (AdWords API Team)
Hi,

There has been no change in the change history functionality in the API, 
but when and if changes are made they will be part of a future release and 
announced in the release notes 
.

Thanks,
Josh, AdWords API Team

On Thursday, December 11, 2014 4:01:35 PM UTC-5, D2CMedia Videos wrote:
>
> Has there been any update about this post as I am unable to get any 
> changes for all our customers 
>
> On Friday, 29 August 2014 11:16:45 UTC-4, Josh Radcliff (AdWords API Team) 
> wrote:
>>
>> Hi Danilo,
>>
>> I believe this was already filed as a feature request, but I went ahead 
>> and filed another request on your behalf just now. I'll reply to this 
>> thread when I have an update.
>>
>> Cheers,
>> Josh, AdWords API Team
>>
>> On Friday, August 29, 2014 10:44:25 AM UTC-4, Danilo Bargen wrote:
>>>
>>> Hi
>>>
>>> On Friday, August 29, 2014 3:47:03 PM UTC+2, Josh Radcliff (AdWords API 
>>> Team) wrote:

 The API does not provide user information about changes at this time. 
 Anash's previous post regarding CustomerSyncService 
  
 covers 
 the only change history-related features of the API.

>>>
>>> That's what I feared, thanks for the information. Too bad that Google 
>>> don't eat their own dogfood regarding the APIs (hello there Amazon)...
>>>
>>> Is there a way to make this a feature request?
>>>
>>> Cheers
>>> Danilo
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/9b28d068-be8e-466d-b204-e48239cb91ca%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Why aren't all of my products searchable in Google Shopping?

2014-12-12 Thread Laura E. DelVecchio
I've have over 630 products and when I checked on my Google Shopping to see 
how many items are searchable it tells me only 58 are searchable. Why 
aren't all of my items searchable??

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/f657aceb-486c-402a-aa78-ce63d6adbf08%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


delete inactive product from google marchant center through php

2014-12-12 Thread sandesh
1) i like to delete the inactive(disapproved) product from google marchant 
account but i can fetch records through google api in php but i am not able 
to fine where which product is disapproved or inactive.
can any one help to know how should i select inactive product then i can 
delete it through api(programatically)


thank you

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/257fab6b-e8f0-4556-a681-5ac4b3cc7429%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Getting the Change History via the API

2014-12-12 Thread D2CMedia Videos
Has there been any update about this post as I am unable to get any changes 
for all our customers 

On Friday, 29 August 2014 11:16:45 UTC-4, Josh Radcliff (AdWords API Team) 
wrote:
>
> Hi Danilo,
>
> I believe this was already filed as a feature request, but I went ahead 
> and filed another request on your behalf just now. I'll reply to this 
> thread when I have an update.
>
> Cheers,
> Josh, AdWords API Team
>
> On Friday, August 29, 2014 10:44:25 AM UTC-4, Danilo Bargen wrote:
>>
>> Hi
>>
>> On Friday, August 29, 2014 3:47:03 PM UTC+2, Josh Radcliff (AdWords API 
>> Team) wrote:
>>>
>>> The API does not provide user information about changes at this time. 
>>> Anash's previous post regarding CustomerSyncService 
>>>  
>>> covers 
>>> the only change history-related features of the API.
>>>
>>
>> That's what I feared, thanks for the information. Too bad that Google 
>> don't eat their own dogfood regarding the APIs (hello there Amazon)...
>>
>> Is there a way to make this a feature request?
>>
>> Cheers
>> Danilo
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a4954b49-a362-4383-a6f4-66204be70d7e%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: MutateAction (ADD) requires CREATE_CAMPAIGN Getting on Create campaign

2014-12-12 Thread autociudad
 I have the same error message 
[OperationAccessDenied.ADD_OPERATION_NOT_PERMITTED @ class 
campaignmgmt.campaign.MutateAction (ADD) requires CREATE_CAMPAIGN] and I 
solved it setting the clientCustomerId.

My c# code was:

// Get the CampaignService.
CampaignService campaignService =
(CampaignService)_user.GetService(AdWordsService.v201409.
CampaignService);

// Set ClientCustomerId
campaignService.RequestHeader.clientCustomerId = 
myClientCustomerId;




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/4a7bd847-77b3-4f9d-aa44-c35f60c2d950%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Data Updation time on Adwords Server

2014-12-12 Thread Michael Cloonan (AdWords API Team)
Hello,

Please see this support article on data freshness 
. It will explain 
when your data will be ready.

Please note also that invalid clicks may be removed after this time, once 
they are discovered to be invalid.

Regards,
Mike, AdWords API Team

On Friday, December 12, 2014 7:31:54 AM UTC-5, Vandita Chhabaria wrote:
>
> Hello All,
>
> My Adwords API client is working good, My code fetches data from Adwords 
> server at 4 am in the morning (IST) for last date.
>
> What I observed is, there is a slight mismatch in data if I compare data 
> of my database and adwords at a time later.
>
> The cumulative effect of this is large
>
> Can I get an idea what would be the ideal time to fetch all data from 
> adwords to my database ???
>
> Or how much time exactly it takes for data to be fully updated and intact 
> on Adwords server.
>
> I have already read that it takes 4 hours for data to be perfectly 
> updated, and I have taken care of it still there is a mismatch
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/6f444704-bbd5-4711-a7a0-29d457095b6f%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Data Updation time on Adwords Server

2014-12-12 Thread Vandita Chhabaria
Hello All,

My Adwords API client is working good, My code fetches data from Adwords 
server at 4 am in the morning (IST) for last date.

What I observed is, there is a slight mismatch in data if I compare data of 
my database and adwords at a time later.

The cumulative effect of this is large

Can I get an idea what would be the ideal time to fetch all data from 
adwords to my database ???

Or how much time exactly it takes for data to be fully updated and intact 
on Adwords server.

I have already read that it takes 4 hours for data to be perfectly updated, 
and I have taken care of it still there is a mismatch

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ed32f18b-b2c7-4ab3-89c1-bcce3b9e3e80%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.