Can't Run Important Part Of Sample Code

2011-07-06 Thread Thomas Stavnager
I'm currently working on a auto adding system for adwords, and there fore 
using the Adwords API.
The problem is that when trying to run the code from the Sample program, 
with the copyed App.Config to Web.Config I get something about 
"Google.Api.Ads.Common.Lib.SoapListenerExtension" not being found in 
"System.Web.Services"(And why should it??). This is part of the standard 
sample code that gives the error: 

CampaignService campaignService =  
(CampaignService)user.GetService(AdWordsService.v201101.CampaignService);

The Hole Code:

string[] newline = { Environment.NewLine };
Label1.Text = "";

Dictionary headers = new Dictionary();

headers.Add("Email", "l...@mcb.dk");
headers.Add("Password", "8hsl9ghbd");
headers.Add("UserAgent", "MCB Adwords Prototype");
headers.Add("DeveloperToken", "l...@mcb.dk++DKK");
headers.Add("ClientEmail", "client_1+...@mcb.dk"); 
headers.Add("AdWordsApiServer", 
"https://adwords-sandbox.google.com/";);
AdWordsUser user = new AdWordsUser(headers);
foreach (string line in 
Session["data"].ToString().Split(newline, StringSplitOptions.None))
{
foreach (string line2 in 
Session["data2"].ToString().Split(newline, StringSplitOptions.None))
{
if (line != "")
{
CampaignReturnValue retVal = null;

// Get the CampaignService.
CampaignService campaignService =

(CampaignService)user.GetService(AdWordsService.v201101.CampaignService);

// Create campaign.
Campaign campaign = new Campaign();
campaign.name = line;
campaign.status = CampaignStatus.PAUSED;
campaign.biddingStrategy = new ManualCPC();

Budget budget = new Budget();
budget.period = BudgetBudgetPeriod.DAILY;
budget.deliveryMethod = 
BudgetBudgetDeliveryMethod.STANDARD;
budget.amount = new Money();
budget.amount.microAmount = 5000;

campaign.budget = budget;

// Set the campaign network options to GoogleSearch 
and SearchNetwork
// only. Set ContentNetwork, PartnerSearchNetwork 
and ContentContextual
// to false.
campaign.networkSetting = new NetworkSetting();
campaign.networkSetting.targetGoogleSearch = true;
campaign.networkSetting.targetSearchNetwork = true;
campaign.networkSetting.targetContentContextual = 
false;
campaign.networkSetting.targetContentNetwork = 
false;
campaign.networkSetting.targetPartnerSearchNetwork 
= false;

// Create operations.
CampaignOperation operation = new 
CampaignOperation();
operation.@operator = Operator.ADD;
operation.operand = campaign;

try
{
// Add campaign.
retVal = campaignService.mutate((new 
CampaignOperation[] { operation }));
}
catch (Exception ex)
{
Label1.Text += "" + line + "";
}
if (retVal != null && retVal.value != null)
{
foreach (Campaign campaignResult in 
retVal.value)
{
Label1.Text += "" + line + "  [PRIS:" + 
Convert.ToInt32(campaignResult.budget.amount.microAmount).ToString() + "]";
}
}
else
{
Label1.Text += "" + line + "";
}
}
  }
}


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

how to apply for developer access to access production services

2011-07-06 Thread Daniela
Hi,

I am tyring to get the Developer Token to access the production server
for GetTargetingIdeaService().
(sandbox is working fine)

reading through the forums it seems that I need to have an MCC account
or/and an developer account.

I tried various things:
e.g. when trying to sign up for MCC account I get an error message,
saying I alreayd have an Google Adwords account.

When I try this link here:
http://code.google.com/apis/adwords/
>>Signing up is easy. All you need to get started is an active AdWords account. 
>>Once you have registered as a ??developer, you can access your AdWords API 
>>Center to manage your token and budget settings.

the message is
"Your access level doesn't allow you to view this page. Please contact
your account administrator to request access at a level that allows
you to view this page: brezn2...@gmail.com."

so my questions are
how can I register as an developer?
how can I apply for an AdWords API Developer Token
and how can I create an MCC account?

thanks, Daniela

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


CampaignService returning extra campaigns

2011-07-06 Thread Joshua Chan
Hi,

I'm using Get from the CampaignService and it's returning two more campaigns 
than what's shown live in the AdWords Client. I'm using v200909 and only 
have one filter (campaignStatuses as ACTIVE) in the request. Do you know any 
reason why it's behaving this way? The requestId is 
3f9eadc7baf092456360ee1741177d77.

Thanks

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


Re: Avg CPC: API vs Web UI Result

2011-07-06 Thread dhru
I am also facing same issue.

https://groups.google.com/forum/embed/?place=forum/adwords-api&showsearch=true&showpopout=true&parenturl=http%3A%2F%2Fcode.google.com%2Fapis%2Fadwords%2Fforum.html#!topic/adwords-api/bw1MYnycRVs

My software show different value, but google keyword tool show
different.

On Jul 6, 7:40 am, Kevin Winter  wrote:
> Hi,
>   Is this a discrepancy between the UI and the API or is it the same with
> both?  If the same, I recommend asking on the general AdWords support forum.
>
> If you are using the API and the values are different, did you double-check
> to make sure you are specifying $1M USD as per PJ's suggestion?
>
> If neither of the above apply, can you please give specific examples?
>
> - Kevin Winter
> AdWords API Team

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


Re: Timezone changes?

2011-07-06 Thread jstedman
Sorry to be clogging the pipe, I have just been informed that we do
have a tool that uses the AccountService to get timezone information
for accounts, so this feature can be moved back into the "needing"
column.

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


Re: AdGroupAdService: QuotaCheckError.INVALID_TOKEN_HEADER

2011-07-06 Thread bgraves
I noticed this error occuring constantly last week with several
accounts.  Yes, many many retries eventually resolved the issue.  This
week, I haven't noticed the issue at all.

On Jul 6, 9:27 am, Eric Koleda  wrote:
> Hi,
>
> Are you noticing any patterns with this error?  Do retries resolve the
> issue?  Does it happen on only certain accounts?
>
> Best,
> - Eric Koleda, AdWords API Team

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


Re: Timezone changes?

2011-07-06 Thread jstedman
Correction, we won't be "needing" to retrieve it, but it would
definitely be useful.

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


Re: can't create TemplateAd anymore with API upgrade

2011-07-06 Thread bgraves
Yes, but my issue is the fact that I don't want or have a video.  Why
does TemplateAd require one??

On Jul 5, 11:34 pm, "Anash P. Oommen" 
wrote:
> Hi,
>
> AdWords API doesn't allow you to upload videos, so you have to upload the
> video, get the videoId using MediaService and then use it. 
> Seehttp://code.google.com/p/google-api-adwords-php/source/browse/trunk/e...for
> an example on how to add a video 
> ad.http://code.google.com/p/google-api-adwords-php/source/browse/trunk/e...shows
> how to get a video id.
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.

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


Re: Timezone changes?

2011-07-06 Thread jstedman
While trying to make sense out of this, I attempted to find out what
timezone the account that is having the "correct data" issue(we
actually generated a Jira issue for this) and see if it was indeed in
the GMT timezone or if it got moved somehow.

The ServicedAccountService always returns the dateTimeZone value as
null. We will definitely be needing to retrieve this value, the old
AccountService does support it, will the ServicedAccountService be
updated to include this in the future?

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


Re: Oauth getAccessToken() is giving error when calling adwords API 2.6.3 (php)

2011-07-06 Thread Eric Koleda
Hi Chirag,

As I mentioned in the issue 
tracker, 
you need to persist the OAuth token and token secret between requests, for 
instance in the PHP session.

Best,
- Eric Koleda, AdWords API Team

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


Re: Testing for conversion eligibility on ended campaigns

2011-07-06 Thread Eric Koleda
Hi Alexander,

Unfortunately that was the only method available in v200909.  Have you 
looked into upgrading to a newer version of the API?  Unfortunately the 
internal error for that request doesn't provide any additional information.

Best,
- Eric

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


Re: Account name and email address

2011-07-06 Thread Eric Koleda
Hi Rob,

Thanks for passing along these details.  I'll work with the documentation 
team to make that information more visible.

Best,
- Eric

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


api showing wrong cpc today?

2011-07-06 Thread dhru
There seems something wrong with google api today. I am using my personal 
software from past 3 months. Everytime, it correctly showed me right cpc 
data. But today, when i use my software it shows me this data 

keywordcpc
dog  $7.09
skateboard $1.50
buy weight loss  $3.01 

here's the screenshot http://imageshack.us/photo/my-images/546/cpc1.png/


But when i go to google keyword tool, it shows me entirely different data. 

keyword  cpc (broad)
skateboard  $.56
dog $1.10
buy weight loss$2.53

http://imageshack.us/f/820/keywordtool.png/

I dont know in my software, whether i am using broad, exact or phrase to 
calculate cpc. so, i went haead and checked exact and phrase. 

keyword cpc (phrase)
skateboard $.56
dog   $1.12
buy weight loss  $2.93

keyword   cpc (exact)
skateboard   $.48
dog  $1.73
buy weight loss $2.96

Now, i am using this same tool for quite sometime. I always got right cpc 
figure. But today, i getting entirely different data. Is there something 
wrong with google adwords api or with keyword tool?

Thanks




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


Re: awapi_perl_lib_2_4_5 error

2011-07-06 Thread David Torres
Hi,

Please follow up with the question I left for you here 
http://code.google.com/p/google-api-adwords-perl/issues/detail?id=28

Best,

-David Torres - AdWords API Team

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


Re: Get keyword average CPC via Google Adwords API

2011-07-06 Thread Eric Koleda
Hi All,

The TrafficEstimatorService uses the same backend as the Traffic Estimator 
Sandbox UI:

https://adwords.google.com/select/TrafficEstimatorSandbox

The results in the Keyword Tool UI may differ slightly.  Please ensure you 
are using the same targeting and bids in both the UI and the API.

Best,
- Eric Koleda, AdWords API Team

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


Re: Testing for conversion eligibility on ended campaigns

2011-07-06 Thread Alexander Parij
Hi Eric ,

Thanks for the suggestion , unfortunately we are still using v200909 and the 
field is not available to us. Do you have any alternative ways to test 
for eligibility with 200909 ?
Doing more thorough investigation we realized it's not related to Ended 
campaigns but something else , not sure what.
Can you explain RequestError.INVALID_INPUT for this request id 
41d09b725620f441bc06d85072af1e63

Thank you.

Alexander Parij

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


Re: AdGroupAdService: QuotaCheckError.INVALID_TOKEN_HEADER

2011-07-06 Thread Eric Koleda
Hi,

Are you noticing any patterns with this error?  Do retries resolve the 
issue?  Does it happen on only certain accounts?

Best,
- Eric Koleda, AdWords API Team

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


Re: BMJS OperationResults Problem

2011-07-06 Thread Eric Koleda
Hi David,

In case you haven't seen it yet, we published an article on our blog that 
covers BMJS error handling in some detail:

http://adwordsapi.blogspot.com/2010/04/discover-v2009-error-handling-in.html

The basic answer to your question is that for failures, the position of the 
results is not relevant.  All errors for all operations in a batch will be 
held in the FailureResult, which is always the first result in a batch. 
 Just as the first operation in that batch may have been valid, so there may 
be invalid operations that have BatchFailureResults in their corresponding 
indices.  The basic algorithm for handling these errors should be:

1) Determine the size of the batch (all the operations from FailureResult to 
the last BatchFailureResult)
2) Remove all operations that have errors (looking at the errors in the 
FailureResult, which are indexed relative to the start of the batch)
3) Retry the remaining operations

Best,
- Eric Koleda, AdWords API Team

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


Re: Testing for conversion eligibility on ended campaigns

2011-07-06 Thread Eric Koleda
Hi Alexander,

We now recommend you use the field Campaign.conversionOptimizerEligibility 
to determine the eligibility, instead of performing a transition in 
validateOnly mode.

http://code.google.com/apis/adwords/docs/reference/latest/CampaignService.Campaign.html#conversionOptimizerEligibility

Best,
- Eric Koleda, AdWords API Team

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


Timezone changes?

2011-07-06 Thread jstedman
We have seen a change in behavior where accounts which previously
would have discrepancies in reporting due to a difference between the
timezone our system works in(PST) and the timezone of the account(GMT
in this case). The numbers used to be off which made sense, but as of
June 25th the numbers have been matching perfectly. The reports are
still being pulled at this time using the v13 reporting.

This would be considered a good thing, but any unexplained change
scares me and there have not been any changes on our side.

Was there a change in the AdWords backend that maybe caused this
change in behavior?

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


Re: v13 reporting giving more cost in API vs. Google UI

2011-07-06 Thread bgraves
OKay, it looks like the UI doesn't include the phone cost for the
campaign.  This is confusing since the API includes it.  Is there a
reason for leaving this out in the UI?

On Jul 5, 3:26 pm, bgraves  wrote:
> More specifically, most campaigns have a matching cost.  However,
> depending on the account, one or two campaigns are either showing $3
> or $4 less (exactly) in the UI vs. the API.
>
> On Jul 5, 2:52 pm, bgraves  wrote:
>
>
>
> > Until this month, the data returned from the API matched Google UI.
> > However, right now, if I select last month's date range, I end up
> > getting $3 to $8 more Cost than what the UI is showing for the same
> > exact date range.  I've tried using both "Campaign" and "Account" for
> > my selectedReportType.  Unfortunately, both give me a "grandtotal" for
> > "cost" that is more than what the Adwords UI is showing.  How is this
> > possible?  Which is correct: the API or the UI?  Is Google planning on
> > fixing this in the near future?- Hide quoted text -
>
> - Show quoted text -

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


Re: [ReportDefinitionError. CUSTOMER_SERVING_TYPE_REPORT_MISMATCH @ operations]

2011-07-06 Thread Stefan Podkowinski

Are you trying to create the report on behalf of a MCC account?

On 6 Jul., 16:18, Chirag eBrandz  wrote:
> Hi,
>
> I am also getting same error
> [ReportDefinitionError.CUSTOMER_SERVING_TYPE_REPORT_MISMATCH @
> operations].
> Can you help me out what i am doing wrong?
> If you find the solution can you help me out.
>
> Thanks,
> chirag
>
> On May 9, 4:41 pm, "tfren...@internet-mit-iq.de" 
>
>
> mit-iq.de> wrote:
> > Hi,
>
> > so, i use the newest 
> > google-api-adwords-php
> > .
> > Unfortunately I get this error every report type:
> > [@ ReportDefinitionError.CUSTOMER_SERVING_TYPE_REPORT_MISMATCH operations]
>
> > And so no reports.
>
> > The API that I use is the version 201,101th
>
> > My goal is really to create custom reports with cross-client, so I thought I
> > start first with the existing report types of project before I approached 
> > the
> > heavy trust me.
> > Unfortunately, I do not get this out already.
>
> > Here one has an idea?
>
> > ---
> > Leider erhalte ich bei jedem reporttyp diesen fehler:
> > [ReportDefinitionError.
> > CUSTOMER_SERVING_TYPE_REPORT_MISMATCH @ operations]
>
> > Und damit keine Reporte.
>
> > Die Api die ich nutze ist die Version 201101.
>
> > Mein Ziel ist es eigentlich individuelle Berichte mit crossclient zu
> > erstellen, daher dachte ich, ich beginne ersteinmal mit den bestehenden
> > reporttypen bevor ich mich an das schwere projekt heran traue.
> > Leider bekomme ich dies schon nicht hin.
>
> > Hat hier einer eine eine Idee?
> > ---
>
> > [code]
> > error_reporting(E_STRICT | E_ALL);
>
> > // You can set the include path to src directory or reference
> > // AdWordsUser.php directly via require_once.
> > // $path = '/path/to/aw_api_php_lib/src';
> > $path = dirname(__FILE__) . '/../../src';
> > set_include_path(get_include_path() . PATH_SEPARATOR . $path);
>
> > require_once 'Google/Api/Ads/AdWords/Lib/AdWordsUser.php';
> > require_once 'Google/Api/Ads/AdWords/Util/ReportUtils.php';
> > require_once
> > 'Google/Api/Ads/AdWords/v201101/cm/ReportDefinitionService.php';
> > require_once 'Google/Api/Ads/AdWords/v201101/cm/CampaignService.php';
> > require_once 'Google/Api/Ads/AdWords/Util/ReportDownloadException.php';
>
> > try {
> >   // Get AdWordsUser from credentials in "../auth.ini"
> >   // relative to the AdWordsUser.php file's directory.
>
> >     $sfileName = "test.csv";
>
> >       $user = new AdWordsUser();
> >       $user->SetClientId(eigene ID);
> >     $user->LogDefaults();
>
> >     $reportDefinitionService = $user->GetReportDefinitionService('v201101');
> >       $servicedAccountService =
> > $user->GetServicedAccountService("v201101");    
>
> >       // Create selector.
> >       $selector = new Selector();
> >       $selector->fields = array('AdGroupId', 'Id', 'KeywordText',
> >       'KeywordMatchType', 'Impressions', 'Clicks', 'Cost');
> >       $selector->dateRange = new DateRange("20100101", "20110509");
>
> >       $reportDefinition = new ReportDefinition();
> >       $reportDefinition->reportName = 'Keywords performance report #' .
> > time();
> >       $reportDefinition->dateRangeType = 'CUSTOM_DATE';
> >       $reportDefinition->reportType = 'KEYWORDS_PERFORMANCE_REPORT';
> >       $reportDefinition->downloadFormat = 'CSVFOREXCEL';
> >       $reportDefinition->selector = $selector;
>
> >     // Create operations.
> >       $operation = new ReportDefinitionOperation();
> >       $operation->operand = $reportDefinition;
> >       $operation->operator = 'ADD';
>
> >       $operations = array($operation);
>
> >      // Add report definition.
> >      $result = $reportDefinitionService->mutate($operations);
>
> >      $path = dirname(__FILE__) . '/' . $sfileName;
>
> >      for($x = 0; $x < count($result); $x++ ){                        
> >         #$reportDefintionId, $path = NULL,AdWordsUser $user, $server = NULL,
> > $returnMoneyInMicros = NULL
> >         ReportUtils::DownloadReport($result[$x]->id, $path, $user, null,
> > true);                        
> >      }
>
> >      printf("Report with definition id '%s' was downloaded to '%s'.\n",
> >         $reportDefinitionId, $sfileName);} catch (Exception $e) {
>
> >   print $e->getMessage();}
>
> > [/code]

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


Re: Avg CPC: API vs Web UI Result

2011-07-06 Thread Kevin Winter
Hi,
  Is this a discrepancy between the UI and the API or is it the same with 
both?  If the same, I recommend asking on the general AdWords support forum.

If you are using the API and the values are different, did you double-check 
to make sure you are specifying $1M USD as per PJ's suggestion?

If neither of the above apply, can you please give specific examples?

- Kevin Winter
AdWords API Team

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


Re: How to use "local search trends" (usa) via google api

2011-07-06 Thread Kevin Winter
Hi,
  This java example linked from the documentation explains how to use the 
TrafficEstimatorService to retrieve the estimated clicks and other 
statistics for keywords: 
http://www.google.com/codesearch/p?hl=en#9RD3n1d8sRQ/trunk/examples/v201101/GetTrafficEstimates.java&q=Tags:.*TrafficEstimatorService%20v201101%20package:google-api-adwords-java%7Cgoogle-api-adwords-php%7Cgoogle-api-adwords-python-lib%7Cgoogle-api-adwords-dotnet%7Cgoogle-api-adwords-ruby%7Cgoogle-api-ads-ruby%7Cgoogle-api-adwords-perl&sa=N&ct=rx&cd=2

- Kevin

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


Re: [ReportDefinitionError. CUSTOMER_SERVING_TYPE_REPORT_MISMATCH @ operations]

2011-07-06 Thread Danial Klimkin
Hello Chirag,


I never received any logs unfortunately and it is hard to say without
knowing what report you are running and what kind of account you have.

Please send me full XML code of your request and response you get back
from server.


-Danial, AdWords API Team.

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


Re: OrderBy for TargetingIdeaSelector

2011-07-06 Thread Danial Klimkin
Hello Stefan,


The feature of results ordering is only available for the services
which were migrated to Generic Selectors already. Unfortunately,
TargetingIdeaService is not one of them yet so it is only possible to
sort result on client side.


-Danial, AdWords API Team.

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


Re: [ReportDefinitionError. CUSTOMER_SERVING_TYPE_REPORT_MISMATCH @ operations]

2011-07-06 Thread Chirag eBrandz
Hi,

I am also getting same error
[ReportDefinitionError.CUSTOMER_SERVING_TYPE_REPORT_MISMATCH @
operations].
Can you help me out what i am doing wrong?
If you find the solution can you help me out.

Thanks,
chirag

On May 9, 4:41 pm, "tfren...@internet-mit-iq.de"  wrote:
> Hi,
>
> so, i use the newest 
> google-api-adwords-php
> .
> Unfortunately I get this error every report type:
> [@ ReportDefinitionError.CUSTOMER_SERVING_TYPE_REPORT_MISMATCH operations]
>
> And so no reports.
>
> The API that I use is the version 201,101th
>
> My goal is really to create custom reports with cross-client, so I thought I
> start first with the existing report types of project before I approached the
> heavy trust me.
> Unfortunately, I do not get this out already.
>
> Here one has an idea?
>
> ---
> Leider erhalte ich bei jedem reporttyp diesen fehler:
> [ReportDefinitionError.
> CUSTOMER_SERVING_TYPE_REPORT_MISMATCH @ operations]
>
> Und damit keine Reporte.
>
> Die Api die ich nutze ist die Version 201101.
>
> Mein Ziel ist es eigentlich individuelle Berichte mit crossclient zu
> erstellen, daher dachte ich, ich beginne ersteinmal mit den bestehenden
> reporttypen bevor ich mich an das schwere projekt heran traue.
> Leider bekomme ich dies schon nicht hin.
>
> Hat hier einer eine eine Idee?
> ---
>
> [code]
> error_reporting(E_STRICT | E_ALL);
>
> // You can set the include path to src directory or reference
> // AdWordsUser.php directly via require_once.
> // $path = '/path/to/aw_api_php_lib/src';
> $path = dirname(__FILE__) . '/../../src';
> set_include_path(get_include_path() . PATH_SEPARATOR . $path);
>
> require_once 'Google/Api/Ads/AdWords/Lib/AdWordsUser.php';
> require_once 'Google/Api/Ads/AdWords/Util/ReportUtils.php';
> require_once
> 'Google/Api/Ads/AdWords/v201101/cm/ReportDefinitionService.php';
> require_once 'Google/Api/Ads/AdWords/v201101/cm/CampaignService.php';
> require_once 'Google/Api/Ads/AdWords/Util/ReportDownloadException.php';
>
> try {
>   // Get AdWordsUser from credentials in "../auth.ini"
>   // relative to the AdWordsUser.php file's directory.
>
>     $sfileName = "test.csv";
>
>       $user = new AdWordsUser();
>       $user->SetClientId(eigene ID);
>     $user->LogDefaults();
>
>     $reportDefinitionService = $user->GetReportDefinitionService('v201101');
>       $servicedAccountService =
> $user->GetServicedAccountService("v201101");    
>
>       // Create selector.
>       $selector = new Selector();
>       $selector->fields = array('AdGroupId', 'Id', 'KeywordText',
>       'KeywordMatchType', 'Impressions', 'Clicks', 'Cost');
>       $selector->dateRange = new DateRange("20100101", "20110509");
>
>       $reportDefinition = new ReportDefinition();
>       $reportDefinition->reportName = 'Keywords performance report #' .
> time();
>       $reportDefinition->dateRangeType = 'CUSTOM_DATE';
>       $reportDefinition->reportType = 'KEYWORDS_PERFORMANCE_REPORT';
>       $reportDefinition->downloadFormat = 'CSVFOREXCEL';
>       $reportDefinition->selector = $selector;
>
>     // Create operations.
>       $operation = new ReportDefinitionOperation();
>       $operation->operand = $reportDefinition;
>       $operation->operator = 'ADD';
>
>       $operations = array($operation);
>
>      // Add report definition.
>      $result = $reportDefinitionService->mutate($operations);
>
>      $path = dirname(__FILE__) . '/' . $sfileName;
>
>      for($x = 0; $x < count($result); $x++ ){                        
>         #$reportDefintionId, $path = NULL,AdWordsUser $user, $server = NULL,
> $returnMoneyInMicros = NULL
>         ReportUtils::DownloadReport($result[$x]->id, $path, $user, null,
> true);                        
>      }
>
>      printf("Report with definition id '%s' was downloaded to '%s'.\n",
>         $reportDefinitionId, $sfileName);} catch (Exception $e) {
>
>   print $e->getMessage();}
>
> [/code]

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


Report generate took 4 hours.

2011-07-06 Thread Tomasz Pajor
Hello,

I want to ask why generation of the report took 4 hours.

requestId: f41894e32e411d2ed9ea1f151b43007c
reportJobId: 1475782309

--
Best regards
Tomasz Pajor

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


Re: How to give a freelance developer API access to my account?

2011-07-06 Thread Anash P. Oommen
Hi Ken,

Yes, this can be done. Invite the user to manage one of your client
accounts: http://adwords.google.com/support/aw/bin/answer.py?hl=en&answer=71163.
Then set the config as

email = invited_email
password = invited_password
clientEmail: Do not provide the header at all.

This way you can restrict the developer's access to just one account,
and neither of you have to disclose your account credentials to each
other. You can terminate the developer's access to the account at any
time.

Cheers,
Anash P. Oommen,
AdWords API Advisor.


On Jul 6, 1:36 pm, Ken Aston  wrote:
> Hi Anash,
>
> Very good idea, thank you!
>
> In case the delivered scripts don't work in my account, it might be useful
> to actually give the developer access to one of my accounts, not all of the
> accounts in my MCC. Is that technically possible?
>
> Best regards,
> Ken Aston

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


"BusinessName" not supported in Creative Structure Report for one of our Accounts using V13

2011-07-06 Thread t.doellm...@uniquedigital.de
Hi,

we are trying to use the Creative Structure Report for a new client
Account, using the V13 API. But only for this new Account, when we are
trying to validate the Job, we get the following error:

 The following columns are not supported by the Report
Type Structure : [BusinessName]

For all other accounts this column is still valid. Is there a "hidden"
restriction on using this column in Creative Structure Reports?

Regards,

Thomas Döllmann

---
THOMAS DÖLLMANN | SOFTWARE DEVELOPER | unique / hamburg | www.uniquedigital.de

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


Re: Account name and email address

2011-07-06 Thread Rob
Hi Eric,

Thanks for confirming.  I figured that would be the answer to the first 
couple of problems and my workarounds will have to remain in place for a 
while.

For the ServicedAccountSelector you have a couple of non-required boolean 
options (enablePaging, submanagersOnly) and it's not obvious what happens if 
you don't specify them.  It wasn't difficult to find out, but it would be 
handy for anyone else to know without having to experiment - that or make 
them required fields and then a default value isn't relevant.

I also had some odd bahaviour with the serviceTypes option. This one looks 
like a filter, so I would assume that if not specified then you should get 
all service types back.  However in practise, if I didn't specify this 
field, I could get different results if I made exactly the same call several 
times in a row.  The API-only accounts were sometimes included and sometimes 
not, but I haven't seen this happen since the "multiple links" feature was 
released so it could have been fixed.

Regards,
Rob

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


Re: How to give a freelance developer API access to my account?

2011-07-06 Thread Ken Aston
Hi Anash,

Very good idea, thank you! 

In case the delivered scripts don't work in my account, it might be useful 
to actually give the developer access to one of my accounts, not all of the 
accounts in my MCC. Is that technically possible?

Best regards,
Ken Aston

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


Re: How to give a freelance developer API access to my account?

2011-07-06 Thread Anash P. Oommen
Hi Ken,

The developer would need to be able to run reports, and modify bids to get 
this done. Here are your options as far as I can tell:

1. Ask the developer to write code against the AdWords API Sandbox. This 
would allow the developer to write code, but not to test it beyond a point. 
(you won't get real stats from sandbox accounts). Once the development is 
done, change the settings to point to the production account, substitute 
your token and your MCC login credentials. This way, you don't have to share 
your account details or tokens with the developer at all. Also, sandbox 
account won't cost you any money for development.

2. Ask the developer to get his own test adwords account and tokens. Ask him 
to use that for development. Once done, switch the settings as in (1). This 
would allow the developer to test against real stats, but will cost the 
developer money (generating stats would require serving ads, which costs 
money. So does making API calls against production account).

Doing development against live account is not a good idea even if you trust 
the developer, since any issue in the script during the development phase 
can mess up your live accounts.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

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