Re: AdGroupAdService not retrieving all the ads

2011-08-16 Thread Brilliant Media
Thanks Eric

Its strange that these ads can't be retrieved through the API, as 
thrdr-party ads I setup on the SandBox are available through the API.

I had hoped to be able to manipulate the "Destination Url" (which isn't 
actually used) so I can correlate this with our customer's conversion 
tracking, but I think there's a separate conversation going on about getting 
these changed elsewhere.

Once again, thanks for the info.

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


Erroneous behavior of AdParamService.get method

2011-08-16 Thread sm1
Hello Support,

While requesting the adParams for the given set of AdGroup Ids, some
time we get and interface fault error like

Cannot find method [get] version=v201101 in class [interface
com.google.ads.api.services.campaignmgmt.adparam.AdParamService] while
invoking public abstract
com.google.ads.api.services.campaignmgmt.adparam.v201101.jaxbgen.AdParamPage
com.google.ads.api.services.campaignmgmt.adparam.v201101.jaxbgen.AdParamServiceInterface.get(com.google.ads.api.services.campaignmgmt.adparam.v201101.jaxbgen.AdParamSelector)
throws
com.google.ads.api.services.campaignmgmt.adparam.v201101.jaxbgen.ApiException_Exception
with params
[com.google.ads.api.services.campaignmgmt.adparam.v201101.jaxbgen.AdParamSelector@3725c9].

The same SOAP request works next time.

Could you please look into this so that we can have smooth operation
for all the SOAP calls.

SOAP Request and Response are as follows:

http://www.w3.org/2001/XMLSchema-instance"; xmlns:SOAP-
ENC="http://schemas.xmlsoap.org/soap/encoding/"; xmlns:SOAP-ENV="http://
schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/
XMLSchema" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/
encoding/">DQAAAKMT6FnTVsfeoSA3uY8o7cuD7R5VnfozBZeqR6cKjcSvxoR6w40Es_Y0FEH5KidUoM_efSWn0CunEN_venAhAibWvh0mYmZk75kpkSWzOBuaknQrJXYZ_2PThkbMva28cu2vwusfMduotkI1kGtt_hB81HTAbrysOke4bfb8BeMX2mRWr9tyv6xaNFMODqZNlwnCO6ghUU1aZDc5NxuacnQHd-
uFAAUbeX29OXKQkuPaOQXxxXX7838684719https://adwords.google.com/
api/adwords/cm/v201101">19452403321983370092215125093221512510522151252972215520997205000

http://schemas.xmlsoap.org/soap/
envelope/">soap:ServerCannot find method [get] version=v201101 in
class [interface
com.google.ads.api.services.campaignmgmt.adparam.AdParamService] while
invoking public abstract
com.google.ads.api.services.campaignmgmt.adparam.v201101.jaxbgen.AdParamPage
com.google.ads.api.services.campaignmgmt.adparam.v201101.jaxbgen.AdParamServiceInterface.get(com.google.ads.api.services.campaignmgmt.adparam.v201101.jaxbgen.AdParamSelector)
throws
com.google.ads.api.services.campaignmgmt.adparam.v201101.jaxbgen.ApiException_Exception
with params
[com.google.ads.api.services.campaignmgmt.adparam.v201101.jaxbgen.AdParamSelector@3725c9].

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


problem with getting campaignStats (v201101, php)

2011-08-16 Thread mapki
hey
I am trying to get campaigns by api v201101 using php.I create a
Selector object and put 'fields' array in it - Everything is working
well until I try to get campaign stats. According to API docs (http://
code.google.com/intl/pl/apis/adwords/docs/reference/latest/
CampaignService.Selector.html), I add 'CampaignStats' to fields array
- my code below.

  $campaignService = $user->GetCampaignService('v201101');
  // Create selector.
  $selector = new Selector();
  $selector->fields = array('Id', 'Name', 'Status',
'ServingStatus', 'StartDate', 'EndDate', 'CampaignStats');
  $selector->ordering = array(new OrderBy('Name', 'ASCENDING'));
  // Get all campaigns.
  $page = $campaignService->get($selector);

When I run it, I get the following:

  [SelectorError.INVALID_FIELD_NAME @ serviceSelector;
trigger:'CampaignStats'; errorDetails:CampaignStats]

I tried putting campaignStats, Stats, campaign_stats, Stats, stats -
nothing works.

what am I doing wrong?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.INVALID_FIELD_NAME_FOR_REPORT@PrimaryDisplayStatus

2011-08-16 Thread Dmitry
Hi,

If I understood correct Ad Performance Report doesn't contain "keyword" 
field anymore but contains "keywordid" field.
If immediately after Ad Performance Report I run Keyword Performance Report 
I may find there the corresponding keyword itself.

But what about segment definition (by the way: segment means aggregation ?).

Regards,
  Dmitry

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: CPC API?

2011-08-16 Thread jstedman
This could theoretically be done with the traffic estimator service,
but it would be a waste of API units and Google probably would not
appreciate it. By the time you actually obtained traffic estimates for
"every" keyword they would all be out of date anyway. Each single word
keyword is actually three different match type and keyword
permutations, then there are an infinite number of multiple word
keywords, each of which has 3 match type permutations for each work in
the keyword.

If what you meant to ask was if you could get an approximate CPC for
each keyword in a small set, you could set up several
AdGroupEstimateRequests with different CPC values in a range, then see
what your expected return in clicks would be for each CPC bid value.
This would allow you to then guess what CPC values would be effective
in meeting your click goal for each set of keywords.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: problem with getting campaignStats (v201101, php)

2011-08-16 Thread jstedman
The individual stats fields have to be selected by name in the
selector. It is not obvious in the documentation how this works, but
the fields you want are tagged "selectable" on this page:

http://code.google.com/apis/adwords/docs/reference/latest/CampaignService.CampaignStats.html

If you look to the Description box to the right of each field name it
has a sentence like the one below that says what field name to use in
the selector.
{
 This field can be selected using the value "ConversionRate".
}

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Exact match keywords

2011-08-16 Thread jstedman
The API could be used to get a similar list of keywords from the
TargetingIdeaService, but if the Google Keyword Tool is meeting your
needs in that regard there is no reason you require an API token.

The API generally is good for managing accounts on a large scale and
obtaining reporting on a large scale. If I am understanding what you
want to do, you probably do not need to use the API.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Merging Ad, Keyword, and Managed Placement Performance Reports

2011-08-16 Thread jstedman
I ended up merging them in the update of our system, we do not
use .NET and instead use Java, but I'm sure .NET probably supports
similar functionality.

We do not merge Creative reports with Keywords, but we do merge
Keywords, ManagedPlacements, and AdGroup performance data.

This was done in our code by parsing the AdGroup report first and
keeping the performance data in a Map,
then this Map was used to add columns to the ManagedPlacement and
Keyword reports. The result was two reports that had functionally
equivalent structure to the v13 report that could just be appended to
each other to be loaded into our database structure that was already
in place.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: problem with getting campaignStats (v201101, php)

2011-08-16 Thread mapki
Thank You VERY much, It took me several hours and I couldn't make it.

greets
mike

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: problem with getting campaignStats (v201101, php)

2011-08-16 Thread mapki
Thank You VERY much, It took me several hours and I couldn't make it.
Everything works great now.
greets
mike

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 enable partial failure in v201101?

2011-08-16 Thread autonomatt
I have read Discover v201008: Partial Failure for 
AdGroupCriterionServiceand
 I'm trying to enable partial failure.
I am using v201101 in C# and I do not get .setUsePartialFailure() as a 
property of AdWordsUser after initialising.
I've also tried adding the key partialFailure to my App.config, but I'm 
still not getting this behaviour.

I use the AdWords API to add keywords to AdGroups via 
adGroupCriterionService.mutate(operations.ToArray());
Some of the keywords throw policy violation errors on the Api side and I 
would like to ignore these and complete my operations.

Can anyone shed some light on why this is not working.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: השב: Re: ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT@PrimaryDisplayStatus

2011-08-16 Thread Kevin Winter
Hi Dmitry,
  When you choose a field such as Date, the statistics are aggregated for 
that date.  For example, lets say you choose the fields Clicks and Date for 
the date range of the previous seven days.  You might see the following data 
returned:

Date,Clicks
20110809,45
20110810,22
20110811,55
20110812,33
20110813,40
20110814,44
20110815,34

This effectively aggregates the stats on the day they occurred.  This is how 
segementations are done via the API.

- 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: InfoService with API v201101

2011-08-16 Thread ovikast
Fixed.

I was using wrong combination of the emails used for MCC
authentication and emails address in the 'clientEmails ' :

$selector->clientEmails = array('em...@emailserver.tld');

Thank you

On Aug 15, 7:40 pm, ovikast  wrote:
> Hi,
>
> I'm getting the following error when trying to get  APi usage for one
> client under MCC:
>
> [ApiUsageError.INVALID_CLIENT_EMAIL @ selector; trigger:'email']
>
> -code
> used-
>       // Get the InfoService.
>       $infoService = $user->GetInfoService('v201101');
>
>       // Create selector.
>       $selector = new InfoSelector();
>       $selector->apiUsageType = 'UNIT_COUNT_FOR_CLIENTS';
>
>       // From the start of the month until today.
>       $selector->dateRange = new DateRange(date('Ym01'), date('Ymd'));
>
>       $selector->clientEmails = array('em...@emailserver.tld');
>
>       // Get api usage info.
>       $apiUsageInfo = $infoService->get($selector);
>
>       // Display api usage info.
>       if (isset($apiUsageInfo)) {
>         print 'The total number of API units used this month is "'
>             . $apiUsageInfo->cost . "\".\n";
>       } else {
>         print "No api usage information was returned.\n";
>       }
>
> -
>
> Any suggestions?
>
> Thank you

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


Customer Sync Service sandbox timeout issue

2011-08-16 Thread andrew branco
i am trying to use the customersync service in the sandbox and i keep 
getting timeout errors and unexpected internal API errors, however when i 
used my production account it worked fine ... is the sandbox broken? if so 
any word on when it would be fixed?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Negative keywords lists via the API

2011-08-16 Thread Joshua Chan
Are these negative keyword lists available through the API now by any 
chance?
If the lists themselves cannot be accessed, are the negative keywords in 
these lists retrievable through other means, perhaps through the campaigns 
that they're applied on?

Thanks,
Joshua

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Random SOAP faults in AdParamService

2011-08-16 Thread Eric Koleda
Hi All,

This appears to be a configuration error on Google's side, and we are 
working to resolve the issue.  At this time there is no workaround that can 
be applied client-side.

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: ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT@PrimaryDisplayStatus

2011-08-16 Thread khanh
So is there no resolution to this?
How are we to get the Phone Costs?


On Aug 12, 4:32 pm, khanh  wrote:
> This does NOT solve my problem.
> The UI report has a column called Phone Cost.
> I can not retrieve Phone Cost (it's not a field available)  from the
> API and must generate the column/report via the UI.
>
> Why should retrieving the report which is XML break?
>
> If i manually save the XML file from the UI and import it manually it
> still works.
> The idea was to have the API automatically download the UI report.
>
> On Aug 12, 7:22 am, Kevin Winter  wrote:
>
>
>
>
>
>
>
> > We have an update for this issue:
>
> >https://groups.google.com/forum/#!topic/adwords-api/sHvSoAQTy54
>
> > - 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: Erroneous behavior of AdParamService.get method

2011-08-16 Thread Eric Koleda
Hi,

Please see my response on this related 
thread: https://groups.google.com/d/msg/adwords-api/zNSZ6yeQ9R4/Ft5n7mE0m_EJ

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: Placement Name (PlacementURL) max length or validation

2011-08-16 Thread Eric Koleda
Hi Eric,

According to the spec, no portion of a domain name may be longer than 63 
characters:

http://en.wikipedia.org/wiki/Domain_Name_System#Domain_name_syntax

If you want to test the max length use a smaller domain name and add a path. 
 The maximum placement length for the AdWords API is documented here:

http://code.google.com/apis/adwords/docs/appendix/limits.html#criterion

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: Predicate Adding and removing Programtically

2011-08-16 Thread Eric Koleda
Hi Sajan,

The AdWords API .NET client library isn't doing anything special here.  The 
predicates field is an array of Predicate objects, and you can manipulate 
that array the same way you would manipulate any other array in .NET.

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 connection

2011-08-16 Thread Eric Koleda
Hi Mouloud,

The PHP client library requires the cURL extension to be installed:

http://code.google.com/p/google-api-adwords-php/source/browse/trunk/README#417

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


CustomerSyncService: destination URL changes not being returned

2011-08-16 Thread bgraves
Why is this happening now?  Only the placement deletions are being
returned (not the destination URL changes of several Ads):

-BEGIN API CALL-

Request
---

POST /api/adwords/ch/v201008/CustomerSyncService
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client
Protocol 4.0.30319.225)
VsDebuggerCausalityData: uIDPo00EDtQyi69MghhLyiWZShoAxqOM
+RwIoEuPfYlcb/m8KwuBlbyWWkBOoWq6NKYfZSkACQAA
Content-Type: text/xml; charset=utf-8
SOAPAction: ""
Host: adwords.google.com
Content-Length: 2244
Connection: Keep-Alive
TimeStamp: Tue, 16 Aug 2011 09:12:20 GMT

http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xmlns:xsd="http://www.w3.org/2001/
XMLSchema">https://adwords.google.com/api/adwords/cm/v201008";>**https://adwords.google.com/api/
adwords/cm/v201008">20110816 072522 -07:00https://adwords.google.com/api/adwords/cm/
v201008">20110816 075951 -07:0078428621794258217942594179788701802748218045794180458061804581818157970181579821815799418217646182176581821767018302234187482501874826218748274187551861875519818755210187552221875523418755246187552581875527019127858191907021

Response


X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Transfer-Encoding: chunked
Cache-Control: private, max-age=0
Content-Type: text/xml; charset=UTF-8
Date: Tue, 16 Aug 2011 16:12:19 GMT
Expires: Tue, 16 Aug 2011 16:12:19 GMT
Server: GSE
TimeStamp: Tue, 16 Aug 2011 09:12:20 GMT

http://schemas.xmlsoap.org/soap/
envelope/">0004aaa1a4cd30d00a6d5c033137453601473078428621FIELDS_UNCHANGEDfalse79425821FIELDS_UNCHANGEDfalse79425941FIELDS_UNCHANGEDfalse79788701FIELDS_UNCHANGEDfalse80274821FIELDS_UNCHANGEDfalse80457941FIELDS_UNCHANGEDfalse80458061FIELDS_UNCHANGEDfalse80458181FIELDS_UNCHANGEDfalse81579701FIELDS_UNCHANGEDfalse81579821FIELDS_UNCHANGEDfalse81579941FIELDS_UNCHANGEDfalse82176461FIELDS_UNCHANGED3264783101FIELDS_UNCHANGED186052679813264783221FIELDS_UNCHANGED2025565810118396630821320370153413264783341FIELDS_UNCHANGED192854241413264782861FIELDS_UNCHANGED183966308213264782501FIELDS_UNCHANGED1839663082132037015341false82176581FIELDS_UNCHANGEDfalse82176701FIELDS_UNCHANGEDfalse83022341FIELDS_UNCHANGEDfalse87482501FIELDS_UNCHANGEDfalse87482621FIELDS_UNCHANGEDfalse87482741FIELDS_UNCHANGEDfalse87551861FIELDS_UNCHANGEDfalse87551981FIELDS_UNCHANGEDfalse87552101FIELDS_UNCHANGEDfalse87552221FIELDS_UNCHANGEDfalse87552341FIELDS_UNCHANGEDfalse87552461FIELDS_UNCHANGEDfalse87552581FIELDS_UNCHANGEDfalse87552701FIELDS_UNCHANGEDfalse91278581FIELDS_UNCHANGEDfalse91907021FIELDS_UNCHANGEDfalse20110816 145348 UTC
-END API CALL---

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: CustomerSyncService: destination URL changes not being returned

2011-08-16 Thread bgraves
I figured it out.  It looks like this problem is related to the
timezone of the account (-08:00) which is different than our timezone
(-07:00).

On Aug 16, 9:22 am, bgraves  wrote:
> Why is this happening now?  Only the placement deletions are being
> returned (not the destination URL changes of several Ads):
>
> -BEGIN API CALL-
>
> Request
> ---
>
> POST /api/adwords/ch/v201008/CustomerSyncService
> User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client
> Protocol 4.0.30319.225)
> VsDebuggerCausalityData: uIDPo00EDtQyi69MghhLyiWZShoAxqOM
> +RwIoEuPfYlcb/m8KwuBlbyWWkBOoWq6NKYfZSkACQAA
> Content-Type: text/xml; charset=utf-8
> SOAPAction: ""
> Host: adwords.google.com
> Content-Length: 2244
> Connection: Keep-Alive
> TimeStamp: Tue, 16 Aug 2011 09:12:20 GMT
>
>  xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> xmlns:xsd="http://www.w3.org/2001/
> XMLSchema"> xmlns="https://adwords.google.com/api/adwords/cm/v201008";>** applicationToken>https://adwords.google.com/api/
> adwords/cm/v201008"> RequestHeader>20110816 072522 -07:00 min>https://adwords.google.com/api/adwords/cm/
> v201008">20110816 075951 -07:00 dateTimeRange>78428621 campaignIds>7942582179425941 campaignIds>7978870180274821 campaignIds>8045794180458061 campaignIds>8045818181579701 campaignIds>8157982181579941 campaignIds>8217646182176581 campaignIds>8217670183022341 campaignIds>8748250187482621 campaignIds>8748274187551861 campaignIds>8755198187552101 campaignIds>8755222187552341 campaignIds>8755246187552581 campaignIds>8755270191278581 campaignIds>91907021 soap:Body>
>
> Response
> 
>
> X-Content-Type-Options: nosniff
> X-Frame-Options: SAMEORIGIN
> X-XSS-Protection: 1; mode=block
> Transfer-Encoding: chunked
> Cache-Control: private, max-age=0
> Content-Type: text/xml; charset=UTF-8
> Date: Tue, 16 Aug 2011 16:12:19 GMT
> Expires: Tue, 16 Aug 2011 16:12:19 GMT
> Server: GSE
> TimeStamp: Tue, 16 Aug 2011 09:12:20 GMT
>
> http://schemas.xmlsoap.org/soap/
> envelope/">0004aaa1a4cd30d00a6d5c0331374536 requestId>01473 responseTime>0 soap:Header>78428621 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>79425821 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>79425941 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>79788701 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>80274821 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>80457941 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>80458061 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>80458181 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>81579701 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>81579821 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>81579941 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>82176461 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>3264783101 ns2:adGroupId>FIELDS_UNCHANGED ns2:adGroupChangeStatus>18605267981 ns2:deletedCriteria> ns2:changedAdGroups>3264783221 ns2:adGroupId>FIELDS_UNCHANGED ns2:adGroupChangeStatus>20255658101 ns2:deletedCriteria>18396630821 ns2:deletedCriteria>32037015341 ns2:deletedCriteria> ns2:changedAdGroups>3264783341 ns2:adGroupId>FIELDS_UNCHANGED ns2:adGroupChangeStatus>19285424141 ns2:deletedCriteria> ns2:changedAdGroups>3264782861 ns2:adGroupId>FIELDS_UNCHANGED ns2:adGroupChangeStatus>18396630821 ns2:deletedCriteria> ns2:changedAdGroups>3264782501 ns2:adGroupId>FIELDS_UNCHANGED ns2:adGroupChangeStatus>18396630821 ns2:deletedCriteria>32037015341 ns2:deletedCriteria> ns2:changedAdGroups>false ns2:campaignTargetingChanged> ns2:changedCampaigns>82176581 ns2:campaignId>FIELDS_UNCHANGED ns2:campaignChangeStatus>false ns2:campaignTargetingChanged> ns2:changedCampaigns>82176701 ns2:ca

Can I generate report for single client under mcc account

2011-08-16 Thread soumya pathuri
I am using v2011  to generate adperformance report but, Can I generate
report for single client under mcc account using customer id.
Please advice,
Soumya.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.INVALID_FIELD_NAME_FOR_REPORT@PrimaryDisplayStatus

2011-08-16 Thread Kevin Winter
Hi,
  Phone information is not currently supported by the API, therefore the 
reports will not allow you to download them at this time.

- Kevin Winter

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: השב: Re: ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT@PrimaryDisplayStatus

2011-08-16 Thread Kevin Winter
Hi Dmitry,
  It sounds like you should run some type of Placements report and a Keyword 
report: http://code.google.com/apis/adwords/docs/appendix/reports.html

- Kevin Winter

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: State/Province list for Location Extension

2011-08-16 Thread Luke Renn
1) It's pointless to even populate provinceCode.  It doesn't come down with 
the locations anyway (it's always null) and as far as I can tell, is 
ignored.

2) Right, but what I really wanted was the list countries that don't work as 
expected.  From what I can tell these are the United Kingdom, Egypt, and 
Columbia [ 'GB', 'EG', 'CO' ].  For those three countries there is a text 
field in the adwords ui even though there is seed data for province codes 
for those countries.  For the UK, it calls itself County, for this, the 
provinceName needs to either be the valid county, or a valid provinceName 
(England).  For any other countries with provinceCodes the provinceName 
needs to be the provinceCode with the country stripped.  Otherwise, the drop 
down won't be properly set.

3) While it's true that it is documented there, that's not exactly the best 
place for a developer to find it.  For anyone else out there, here are the 
supported country codes so you can filter your country list...

[ 'AU', 'AT', 'BE', 'BR', 'CA', 'CL', 'CN', 'CO', 'HR', 'CZ', 'DK', 'EG', 
'FI', 'FR', 'DE', 'HK', 'HU', 'IN', 'IE', 'IL', 'IT', 'JP', 'KE', 'KR', 
'LI', 'MY', 'MX', 'NL', 'NZ', 'NG', 'NO', 'PL', 'PT', 'RU', 'SG', 'SK', 
'ZA', 'ES', 'SE', 'CH', 'TW', 'TH', 'UA', 'GB', 'US' ]

4) Ok, could be better documented; not being able to pull by mediaId is odd.

Thanks,

Luke

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 support - please finish the job

2011-08-16 Thread Matt
Is there any news on OAuth support in report downloading?
My team just migrated a large amount of code to use OAuth and now
we've found it's not supported for downloading a report generated
using OAuth.
It seems a little strange to have to require our clients to provide 2
authentication methods (OAuth, ClientLogin) in order to use OAuth.
Any help or a timeline would be appreciated.

Thanks,
Matt

On Jul 21, 12:39 pm, Chirag  wrote:
> Hi Eric,
> I have same problem as Jason.
> I want to be report to download every week and we cannot store user
> login credentials.
> So it will be helpful, If we can manage download report byOauthInfo
> only.
>
> Thanks,
>
> On Jun 15, 7:49 pm, Eric Koleda  wrote:
>
>
>
>
>
>
>
> > Hi All,
>
> > Thank you for your continued interest in usingOAuthwith the API.
> >  Unfortunately I don't have any timeline on when the feature would be
> > available for report downloads, but I'll let you know when I have any
> > updates.
>
> > 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


Website Cateogy and Traffic

2011-08-16 Thread Vishal
Is there a way to get the website categorization and traffic via the
AdWords API?  This information is available via the ad planner
website: 
https://www.google.com/adplanner/#siteSearch?uid=domain%253A%2520facebook.com&geo=US&lp=false
(I'm interested in "Content Categories" and "Traffic statistics", but
there is no api for adplanner as far as I can tell.  Scraping the
adplanner site is against the TOS (they block the IP after a few
minutes) and I need to do this for 100k+ sites.

Thanks
Vishal

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 support - please finish the job

2011-08-16 Thread Eric Koleda
Hi Matt,

Unfortunately there aren't any updates.

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: Predicate Adding and removing Programtically

2011-08-16 Thread Sajan Maharjan
HI,

Oh yes i see it..

Thanks a lot

Sajan

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