AdWords API PHP Client Library (v201101) release date?

2011-03-06 Thread dzephyrcoder
Hi,

I have read been informed about the launching of AdWords API v201101 and I 
wanna try it out (especially the cross-client reporting).
However, I cannot find the latest PHP library with examples containing this 
new version.
When will it be available for download?

thanks. just excited. ^^


Cheers,

dzephyrcoder




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


Ruby Client Support for Version 201101

2011-03-06 Thread abhinay
Dear AdWords API Team,

When will the new Ruby client be released that supports the new API
release of v201101?

Ball Park figures accepted :-)

Regards,
Abhinay Mehta

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


ideaTextMatchesSearchParameter - included not functioning as expected

2011-03-06 Thread William Vicary
Hey

I'm having troubles using code similar to this:

# Create paging class
$paging = new Paging();
$paging-startIndex = 0;
$paging-numberResults  = 25;

# Create selector class
$selector = new TargetingIdeaSelector();
$selector-requestType = 'IDEAS';
$selector-ideaType = 'KEYWORD';
$selector-requestedAttributeTypes = array('KEYWORD',
'GLOBAL_MONTHLY_SEARCHES', 'AVERAGE_TARGETED_MONTHLY_SEARCHES');
$selector-paging = $paging;

$this-_includeWords = array('promotional');
$ideaTextMatchesSearchParameter = new
IdeaTextMatchesSearchParameter();
$ideaTextMatchesSearchParameter-included = $this-_includeWords;
$parameters[] = $ideaTextMatchesSearchParameter;

$keyword = new Keyword();
$keyword - text = 'promotional pens';
$keyword - matchType = 'EXACT';

$this-_keywords = array($keyword);
$relatedToKeywordSearchParameter = new
RelatedToKeywordSearchParameter();
$relatedToKeywordSearchParameter-keywords = $this-_keywords;
$parameters[] = $relatedToKeywordSearchParameter;

$this-_types = array('EXACT');
# Create Keyword Match Types
$keywordMatchTypeSearchParameter = new
KeywordMatchTypeSearchParameter();
$keywordMatchTypeSearchParameter-keywordMatchTypes = $this-_types;
$parameters[] = $keywordMatchTypeSearchParameter;

$countryClass = new CountryTarget();
$countryClass-countryCode = 'GB';
$this-_countries = array($countryClass);

# Create Country Target Search Parameter
$countryTargetSearchParameter = new CountryTargetSearchParameter();
$countryTargetSearchParameter-countryTargets = $this-_countries;
$parameters[] = $countryTargetSearchParameter;

$selector-searchParameters = $parameters;
$this-_targetingService-get($selector);

You'd expect the above code to include only matches that include the
word Promotional however personalised pencils is being returned -
am I doing something wrong here?

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


trying to create an api

2011-03-06 Thread singaporegirl
hello, I am a newbie and was reading the forum/help on how to create
an API.  I understand that I need a new MCC account not this one for
Adwords.  During a search on the forum, found a link to the
registration page
https://adwords.google.com/select/netapisignup/UsageInfo?stylePrefOverride=2__u=9831388171__c=1657263691stylePrefOverride=2__u=9831388171__c=1657263691
and after feeling in with a different email address, and click
'continue' it went into the help section!

My question is do I create the new MCC account with diffferent email
before filling up the above form or will the MCC account be created
with the email I indicated on the form?  If MCC acc is not auto
generated when the form was filled and I create a MCC acc with that
email, will I get rejected when I apply for API again?

Please advise - tks

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Logger.php errors

2011-03-06 Thread Eric Koleda
Hi,

Another common cause of this error is attempting to add a campaign to an MCC 
account, which isn't allowed.

  
http://code.google.com/apis/adwords/docs/troubleshooting.html#OperationAccessDenied

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: adwords4r: InternalApiError.UNEXPECTED_INTERNAL_API_ERROR

2011-03-06 Thread Eric Koleda
Hi All,

There is currently a problem with the sandbox environment, please see the 
following thread for more information:

  
http://code.google.com/apis/adwords/forum.html?place=topic%2Fadwords-api%2FYj1BZpt0c2Q%2Fdiscussion

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: Differences in Web-Frontend and API

2011-03-06 Thread Eric Koleda
Hi,

For questions about the AdWords web interface please see the general AdWords 
help forum:

  http://www.google.com/support/forum/p/AdWords?hl=en

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: View-Through Conversions

2011-03-06 Thread Eric Koleda
Hi Tibyan,

I don't believe this column is available in v13:

  
http://code.google.com/apis/adwords/docs/developer/adwords_api_report_keyword.html

It is however available in the new v201101 reports:

  http://code.google.com/apis/adwords/docs/appendix/reports.html#keywords

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: Sandbox Authentication Error Customer_Not_Found

2011-03-06 Thread Eric Koleda
Hi Ashley,

The sandbox environment doesn't use any of your production credentials. 
 More information about how to connect to the sandbox is available here:

  http://code.google.com/apis/adwords/docs/sandbox.html

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: Could nor read report

2011-03-06 Thread Eric Koleda
Hi Vitor,

Is this report running against the sandbox environment?  If so, there are 
some known issue with that environment:

  
http://code.google.com/apis/adwords/forum.html?place=topic%2Fadwords-api%2FYj1BZpt0c2Q%2Fdiscussion

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: How to grab data from google adwords api (.NET c#)

2011-03-06 Thread Eric Koleda
Hi Benjamin,

Information on connecting to the sandbox is available here:

  http://code.google.com/apis/adwords/docs/sandbox.html

The .NET client library has a README that you can use to get started:

  http://code.google.com/p/google-api-adwords-dotnet/wiki/Readme

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: can internal object change?

2011-03-06 Thread Eric Koleda
Hi Marco,

Yes, it is safe to assume that the IDs of entities in the AdWords API will 
remain the same over their lifetime.

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: API to link Adwords account from MCC account

2011-03-06 Thread Eric Koleda
Hi Juliano,

The AdWords API doesn't provide the ability to link accounts.

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: V13 Report Service...customers credit card failed error message

2011-03-06 Thread Eric Koleda
Hi Jerry,

For questions about billing please contact AdWords Support:

  http://adwords.google.com/support/aw/bin/request.py

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: ApiException when trying to add AdVariation (Not Sandbox)

2011-03-06 Thread Eric Koleda
Hi All,

Thank you for reporting this problem.  It is a know issue and we are working 
with the core engineering team to resolve it.  At this time there are no 
known workarounds.

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: Performance Reporting - aggregating at hourly level?

2011-03-06 Thread Eric Koleda
Hi Reed,

Hourly aggregation is supported in the API for the ACCOUNT, CAMPAIGN, and 
ADGROUP reports.  To aggregate by hour, simply include the HourOfDay field.

  http://code.google.com/apis/adwords/docs/appendix/reports.html

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: How to get local monthly searches on .Net?

2011-03-06 Thread Eric Koleda
Hi Benjamin,

The global monthly search volume can be retrieved with the 
attribute GLOBAL_MONTHLY_SEARCHES:

  
http://code.google.com/apis/adwords/docs/reference/latest/TargetingIdeaService.AttributeType.html#GLOBAL_MONTHLY_SEARCHES

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: Placement categories

2011-03-06 Thread Eric Koleda
Hi All,

The placement categories (aka verticals) are not available here:

  http://code.google.com/apis/adwords/docs/appendix/verticals.html

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: UNEXPECTED_INTERNAL_API_ERROR

2011-03-06 Thread Eric Koleda
Hi All,

The sandbox needs to be refreshed to resolve the issue, and a refresh has 
been scheduled for Monday.  We apologize for the inconvenience.

  
http://code.google.com/apis/adwords/forum.html?place=topic%2Fadwords-api%2F0-YFKUUV3yA%2Fdiscussion

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: Sorry, My Client Center reports are not supported

2011-03-06 Thread Eric Koleda
Hi Orly,

Unfortunately there was an issue with the cross-client reporting launch, and 
the feature had to be temporarily disabled.  We hope to re-enable it soon, 
but unfortunately I don't have a more specific time estimate.

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


How to sort a report

2011-03-06 Thread stiggywigget
I'm trying to sort by date when defining and adding a report.
In PHP:

$selector-fields = array('CampaignId', 'CampaignName', 'Status', 'Clicks', 
'Cost', 'Date');
$selector-ordering = array('Date'); // Is this correct?
$reportDefinition = new ReportDefinition();
$reportDefinition-reportName = 'name';
$reportDefinition-dateRangeType = 'LAST_7_DAYS';
$reportDefinition-reportType = 'CAMPAIGN_PERFORMANCE_REPORT';
$reportDefinition-downloadFormat = 'XML';
$reportDefinition-selector = $selector;

I suspect there's more to it. 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