Re: No SearchBudgetLostImpressionShare in ad group performance report

2013-01-16 Thread Paul Matthews (AdWords API Team)
Hi Arthur,

The report type 
definitionslists
 all the data we have available, if a column doesn't exist, it's 
because we don't store that data.

If you include columns that don't exist in the report, it responds with an 
error.

Regards,

- Paul, AdWords API Team.

On Tuesday, 15 January 2013 15:00:01 UTC, Arthur Gerigk wrote:
>
> Asking for this column results in an error of the api and also 
> https://developers.google.com/adwords/api/docs/appendix/reports?hl=en#ad-group
>   
> doesn't contain it.
>
> Is there any reason for this?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Oauth2 jwt ruby issue

2013-01-16 Thread teammailsync
Hi Danial,

Thanks for the quick reply, we've replaced the adwords initialization with 
the one you've suggested and we are having a progress, but still there is 
another error:

/path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/auth/oauth2_handler.rb:116:in
 
`validate_credentials': Client id is not included in the credentials. 
(AdsCommon::Errors::AuthError)
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/auth/oauth2_handler.rb:148:in
 
`create_token'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/auth/base_handler.rb:50:in
 
`get_token'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/auth/oauth2_handler.rb:82:in
 
`get_token'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/auth/oauth2_handler.rb:75:in
 
`auth_string'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/savon_headers/oauth_header_handler.rb:45:in
 
`generate_headers'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/savon_headers/base_header_handler.rb:75:in
 
`prepare_request'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/savon_service.rb:103:in
 
`block in execute_soap_request'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/savon-1.2.0/lib/savon/client.rb:129:in 
`yield_objects'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/savon-1.2.0/lib/savon/client.rb:122:in 
`process'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/savon-1.2.0/lib/savon/client.rb:84:in 
`block in request'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/savon-1.2.0/lib/savon/soap/request_builder.rb:56:in
 
`call'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/savon-1.2.0/lib/savon/soap/request_builder.rb:56:in
 
`request'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/savon-1.2.0/lib/savon/client.rb:86:in 
`request'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/savon_service.rb:101:in
 
`execute_soap_request'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/savon_service.rb:81:in
 
`execute_action'
from 
/path/.rvm/gems/ruby-1.9.3-p327/gems/google-adwords-api-0.8.0/lib/adwords_api/v201209/campaign_service.rb:21:in
 
`get'

The application now requires client id. We've tried to add 
:oauth2_client_id and the :oauth2_client_secret (didn't work either), but 
i'm not sure if this is the right direction.

Let me know if you need further information,

All the best,
Georgi

On Tuesday, January 15, 2013 2:04:53 PM UTC+2, Danial Klimkin wrote:
>
> Hello Georgi,
>
>
> If you initialize the library with a hash, you need to make sure to 
> provide all required credentials. Make sure to include all required fields 
> like this:
>
> adwords = AdwordsApi::Api.new({
>   :service => {
> :environment => :PRODUCTION
>   },
>   :library => {
> :log_level => "DEBUG"
>   },
>   :authentication => {
> :method: OAUTH2_JWT
> :oauth2_issuer: '12345...@developer.gserviceaccount.com '
> :oauth2_secret: 'key_secret'
> :oauth2_keyfile: '/path/to/key.p12'
> :developer_token: '',
> :client_customer_id: '123-456-7890'
>   }
> }) 
>
>
> -Danial, AdWords API Team.
>
> On Monday, January 14, 2013 4:05:36 PM UTC+4, teamma...@gmail.com wrote:
>>
>> Hello everyone, 
>>
>> We’ve recently started to use adwords api and now we are trying to 
>> automate few tasks. We’re using OAuth2 authentication and ruby. 
>>
>> We’ve followed the example here 
>> https://code.google.com/p/google-api-ads-ruby/source/browse/adwords_api/examples/v201209/misc/use_oauth2_jwt.rbto
>>  authenticate, the only difference is how we initialize the adwords api:
>>
>> adwords = AdwordsApi::Api.new({
>>
>> :library => {
>>
>>   :log_level => "DEBUG"
>>
>> }}) 
>>
>> # option 1 and option 2 not modified from the example
>>
>> campaign_srv = adwords.service(:CampaignService, API_VERSION)
>>
>>
>> We’ve downloaded the private key file and the path is set correctly and 
>> we’ve tried both options. This is the error we get: 
>>
>> /path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/credential_handler.rb:65:in
>>  
>> `set_credential': undefined method `[]=' for nil:NilClass (NoMethodError)
>>
>> from 
>> /path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/api.rb:103:in
>>  
>> `block in authorize'
>>
>> from 
>> /path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/api.rb:102:in
>>  
>> `each_pair'
>>
>> from 
>> /path/.rvm/gems/ruby-1.9.3-p327/gems/google-ads-common-0.9.0/lib/ads_common/api.rb:102:in
>>  
>> `authorize'
>>
>>
>> Let me know if you need further information, i would like to find out the 
>> possible reason for that error or if there is any error in our 
>> configuration or code?
>>
>>  
>>
>> Thank you in

Re: OAuth 2.0 and link between MCC and new Customers Accounts

2013-01-16 Thread Stamatina Thomaidou
Thank you all for your answers. Eventually, we understood and found the 
solution. We used JSON to get automatically from the response of the 
OAuth2.0 authorization process the email and next we used the InfoService 
to get the AdWords data. :)

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: No SearchBudgetLostImpressionShare in ad group performance report

2013-01-16 Thread pete
Hi Paul

As you pointed out, the API documentation does not mention 
"SearchBudgetLostImpressionShare" 
nor whereas the blog post 
http://googleadsdeveloper.blogspot.co.uk/2012/12/impression-share-reporting-changes.html
 
specifically mentions all the new IS columns (including 2 columns relating 
to "Budget").

Requesting the columns as specified in the Blog throws...

**
* *
* ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT*
* *
* ContentBudgetLostImpressionShare*
* *
**
*
*
*
*
**
* *
* ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT*
* *
* SearchBudgetLostImpressionShare*
* *
**


Are these columns going to show up in the API?

pete


On Wednesday, 16 January 2013 10:51:04 UTC, Paul Matthews (AdWords API 
Team) wrote:
>
> Hi Arthur,
>
> The report type 
> definitionslists
>  all the data we have available, if a column doesn't exist, it's 
> because we don't store that data.
>
> If you include columns that don't exist in the report, it responds with an 
> error.
>
> Regards,
>
> - Paul, AdWords API Team.
>
> On Tuesday, 15 January 2013 15:00:01 UTC, Arthur Gerigk wrote:
>>
>> Asking for this column results in an error of the api and also 
>> https://developers.google.com/adwords/api/docs/appendix/reports?hl=en#ad-group
>>   
>> doesn't contain it.
>>
>> Is there any reason for this?
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Empty adType attribute for html5 ad

2013-01-16 Thread j.e.frank
I can reproduce the problem but I have been battling to get the request / 
response XML logged.  I am running this inside a JUnit test and I'm sure 
it's a configuration problem but I don't understand how the API client uses 
logging (this is the "old" java client).  I called 
AdWordsServiceLogger.log() before doing my operations, but I don't see 
anything about the request and response in my console log.

In any case, I am producing a report of type AdPerformance for account 
2038017879 on Nov 21 2012.  An example of an ad that has an empty adType in 
the report is ad ID 18749019163 in campaign ID 90299683.  If you can 
proceed with this much information, great, otherwise can you please advise 
me on how to get the request/response XML.

On Tuesday, January 15, 2013 5:15:50 PM UTC-5, j.e.frank wrote:
>
> Sorry, I missed that you had replied.  I will see if I can reproduce the 
> problem, and send you the XML if so.
>
> On Friday, November 23, 2012 4:52:21 AM UTC-5, Danial Klimkin wrote:
>>
>> Hello j.e.frank,
>>
>>
>> Can you please send us full XML code of your request and server reply for 
>> this issue? Please make sure to use 'Reply' button to only send it to the 
>> team over email.
>>
>>
>> -Danial, AdWords API Team.
>>
>>
>> On Tuesday, November 20, 2012 7:18:42 PM UTC+4, j.e.frank wrote:
>>>
>>> My guess is that the reporting hasn't caught up with the latest ad 
>>> types.  Interestingly, if I use the adwords API to get information about 
>>> one of these ads, it comes back as a TemplateAd.  Normally these come 
>>> through in the reports with type="Display ad", but in this case it is just 
>>> blank.
>>>
>>> On Thursday, November 15, 2012 10:25:16 AM UTC-5, j.e.frank wrote:

 We have started using the html5 ads, where Google converts an SWF to an 
 html5 banner ad.  In reports, these ads come through with an empty adType 
 attribute.  I don't know what ad type they should have, but certainly 
 something other than blank.  Is there some way for me to identify these 
 ads 
 in a report?

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Any way to reduce RateExceededError 24 hours retry period, using a test account?

2013-01-16 Thread David Torres (AdWords API Team)
Hi Henning,

This problem should have now been resolved, let me know if you are still 
seeing this retry period.

Best,

- David Torres - AdWords API Team

On Monday, January 14, 2013 4:03:35 AM UTC-5, hmortensen2907 wrote:
>
> Hi,
>
> We are developing an automatic AdGenerator and Updater, and are now 
> starting getting RateExceededError errors, which is ok as we at times can 
> have multiple threads making multiple calls at about the same times, but a 
> 24 hours retry period!? Makes the development process grind to a holt :(
>
> Are there any way, with a test account, to get this retry period reduced 
> to a more develop friendly period? 30 secounds as in production would be 
> optimal. 
>
> Thanks in advance.
>
> Henning Mortensen
> Software Developer
> Marketing Lion ApS
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 not pulling in sub-MCC

2013-01-16 Thread David Torres (AdWords API Team)
Hi Andrew,

You actually must use the same developerToken, only one developerToken is 
granted per company. But it is perfectly OK to use a token in parallel.

Best,

- David

On Monday, January 14, 2013 7:08:21 PM UTC-5, Andrew Tchabovsky wrote:
>
> Great, thanks Kevin.  Would we have to obtain a different Developer Token 
> if we do separate requests or can we use the one we have been using?
>
> I will ask our database manager about switching to AdHoc Reporting.
>
> Thanks,
> Andrew
>
>
> On Monday, January 14, 2013 8:13:03 AM UTC-8, Kevin Winter (AdWords API 
> Team) wrote:
>>
>> Hi Andrew,
>>   Sorry for replying directly earlier, it's better to keep this on the 
>> forum for future reference by others.
>>
>>   Requests made to the AdWords API can only target one account at a time. 
>>  For example, if you set your clientCustomerId to one of your client 
>> accounts and invoke CampaignService.get, you'll only see campaigns for that 
>> specific customerId.  The only time it makes sense to use the 
>> clientCustomerId of an MCC account is when obtaining a list of accounts - 
>> using the ManagedCustomerService.  When making ManagedCustomerService 
>> calls, it should return the entire account hierarchy rooted at the 
>> effective MCC (either the one you authenticate as or the one specified as 
>> clientCustomerId).  If you want to pull data from individual accounts, 
>> you'll have to set the clientCustomerId to each individual client account 
>> (i.e. non-MCC) in your hierarchy and make API requests to pull data from 
>> these accounts.
>>
>> As an aside, if you're pulling a lot of data from these accounts, I 
>> strongly recommend you look into AdHoc 
>> reporting 
>> if 
>> you haven't already.
>>
>> - Kevin Winter
>> AdWords API Team
>>
>> On Friday, December 14, 2012 12:13:56 PM UTC-5, Andrew Tchabovsky wrote:
>>>
>>> I apologize for my ignorance here, I have limited knowledge of the API 
>>> workings.  I have pasted below the API command I got from our database 
>>> vendor.  Where in the command do you add the clientCustomerId header?
>>>
>>> AdWordsUser user = new AdWordsUser();
>>> ReportDefinition definition = new ReportDefinition();
>>> definition.reportName = "Custom DESTINATION_URL_REPORT";
>>> definition.reportType = 
>>> ReportDefinitionReportType.DESTINATION_URL_REPORT; ;
>>> definition.downloadFormat = DownloadFormat.XML;
>>> definition.dateRangeType = ReportDefinitionDateRangeType.LAST_MONTH;
>>> Selector selector = new Selector();
>>> selector.fields = new string[] { "AccountDescriptiveName", "CampaignId", 
>>> "CampaignName", "AdGroupId", "AdGroupName", "CampaignStatus", 
>>> "EffectiveDestinationUrl", "Impressions", "Clicks", "Ctr", "AverageCpc", 
>>> "Cost", "AveragePosition", "Date", "AdGroupStatus" };
>>> definition.selector = selector;
>>> definition.includeZeroImpressions = true;
>>> string[] clientid ={ List of Adwords ClientID as a String}
>>>
>>> Thanks,
>>> Andrew
>>>
>>>
>>> On Monday, May 21, 2012 9:41:30 AM UTC-7, David Torres wrote:

 Hi Andrew,

 This is most likely because you are not specifying the clientCustomerId 
 header as part of your request, check the documentation about it in this 
 page https://developers.google.com/adwords/api/docs/headers

 Please let me know if you are still having problems.

 Best,

 -David Torres - AdWords API Team

 On Thursday, May 17, 2012 12:33:28 PM UTC-4, Andrew Tchabovsky wrote:
>
> We are setting up a new API connection and it is only pulling in 
> account data from our main MCC, it is not pulling data from the sub-MCCs 
> within the main MCC.  Has anyone encountered this before?  Any ideas on 
> how 
> we can pull the data from the sub-MCCs in the same 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: TemplateAd error AdError.MISSING_REQUIRED_TEMPLATE_FIELDS

2013-01-16 Thread David Torres (AdWords API Team)
Hi,

Sorry for all the back and forth, but have you tried not sending the ID at 
all - so it doesn't even show up in your SOAP XML?.

Best,

- David

On Tuesday, January 15, 2013 6:14:31 AM UTC-5, Horhe wrote:
>
> Hello David,
>
> I am always doing like this and it's working for TextAd and ImageAd but 
> not for TemplateAd?
>
> if I set ad id to 0 it throws another error: RANGE_TOO_LOW.
>
> So I think this is not the solution.
>
> BR, Anže
>
> 2013/1/8 David Torres (AdWords API Team) 
> 
> >
>
>> Hi,
>>
>> I see you are sending back also the ad id and since you are adding an ADD 
>> operation the id should be not sent, could you try not sending the ad id 
>> and let me know if that fixes the problem.
>>
>> Best,
>>
>> - David
>>
>> On Thursday, December 20, 2012 8:23:41 AM UTC-5, Horhe wrote:
>>
>>> Hello,
>>>
>>> anyone knows something about this error described below?
>>>
>>> [AdError.MISSING_REQUIRED_**TEMPLATE_FIELDS @ operations[1].operand.ad.*
>>> *templateElements[0].**variationSpecificFieldOverride**s; 
>>> trigger:'product1MCImage']
>>>
>>> I am getting TemplateAds down then change their url and put them back to 
>>> Adwords. But I get the above error.
>>>
>>> Thanks.
>>>
>>> Br, Anže
>>>
>>  -- 
>> -- 
>> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>> 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 adwor...@googlegroups.com
>> To unsubscribe from this group, send email to
>> adwords-api...@googlegroups.com 
>> For more options, visit this group at
>> http://groups.google.com/group/adwords-api?hl=en
>>  
>>  
>>  
>>
>
>
>
> -- 
> Lep pozdrav, Anže 
>

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





TrafficEstimator for existing campaigns

2013-01-16 Thread mm
Hey guys -
I am trying to run through some keyword traffic estimates for existing 
keywords - which appears feasible from the documentation. However, I am 
getting an EntityNotFound.INVALID_ID error from the CampaignService when I 
submit my TrafficEstimatorRequest. I have verified that the id is valid. 
Has anyone had any success using the TrafficEstimator for existing 
Campaigns/AdGroups/Keywords? The only examples I have seen are for new 
campaigns & adgroups.

Thanks a bunch -
mm

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 Automate Ad Copies

2013-01-16 Thread David Torres (AdWords API Team)
Hi,

You should take a look at the 
AdParamService.
 
An example in Java on how to update ad params can be found 
here
. 

Best,

- David Torres - AdWords API Team

On Tuesday, January 15, 2013 6:43:43 AM UTC-5, Abishek Kumar wrote:
>
> Hello Developers,
>
> Here i have a query on ingratiating API with current MCC account, I am 
> looking for automation on scheduling the ad copies with flight date 
> countdown. (I mean the text-ads title or description has to change every 
> day with a change dates or days) 
>
> *Ex -* 1st day  - Enroll Now and start course in 3 days”
> 2nd day - Enroll Now and start course in 2 days”
> 3rd day  - Enroll Now and start course in 1 days”
>
> Please help me out with some source.
>
> Thanks,
> Abishek
>

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





Is it possible to visible our two ads for a DOMAIN at a time for Inorganic search for any serch query

2013-01-16 Thread Ashutosh Singh
Hi,

I would like to ask if i have an account of Travel Services and made 3 ad 
groups with 3 ads each. So my question is if any one search on Google from 
Keyword "Tour Packages" then is there any possibility to visible our two 
ads for same campaign.

Please reply me ASAP.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Is it possible to visible our two ads for a DOMAIN at a time for Inorganic search for any serch query

2013-01-16 Thread David Torres (AdWords API Team)
Hi,

This seems to be a general AdWords question, this forum is reserved solely 
to AdWords API technical question. Please contact general AdWords Support 
by any of the channels listed in this 
page
.

Best,

- David Torres - AdWords API Team

On Wednesday, January 16, 2013 1:41:41 PM UTC-5, Ashutosh Singh wrote:
>
> Hi,
>
> I would like to ask if i have an account of Travel Services and made 3 ad 
> groups with 3 ads each. So my question is if any one search on Google from 
> Keyword "Tour Packages" then is there any possibility to visible our two 
> ads for same campaign.
>
> Please reply me ASAP.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Auction Insights Report

2013-01-16 Thread Allen
Hi Anash,

Any update on the timeline for this?

--Allen

On Monday, 28 May 2012 07:46:55 UTC+10, Allen wrote:
>
> Can we reproduce the Auction Insights report via the API? 
>
> If not is there any timeline as to when it might be available?
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Rapidly changing in Bids is good idea? And does it affect quality score or not?

2013-01-16 Thread Takeshi Hagikura (AdWords API Team)
Hello Ashutosh,

In terms of whether it affects the quality core, it doesn't
See also http://support.google.com/adwords/answer/2454010/?hl=en.

In terms of whether it's a good idea, it depends on what you want to 
achieve with it.
For what you have to rapidly change the bidding?

Best,
- Takeshi, AdWords API Team

On Wednesday, January 16, 2013 1:51:10 AM UTC+9, Ashutosh Singh wrote:
>
> Hi,
>
> I am working in a Techsupport company and handling an account of adwords. 
> In Techsupport account i have to rapidly change in bidding to reduce number 
> of call if we see number of calls is more than our Techsupport Engineers. 
>
>
> So would u suggest me is it good idea to rapidly change in bidding or it's 
> harmful for our account. Plz suggest me ASAP. 
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Setting "Focus on conversions" for Campaigns in test accounts (Sandbox)

2013-01-16 Thread Takeshi Hagikura (AdWords API Team)
Hello

Unfortunately it's not possible for test accounts.
Test accounts don't serve actually ads.
We'll keep it as a feature request.

Best,
- Takeshi, AdWords API Team

On Wednesday, January 16, 2013 4:32:36 AM UTC+9, HK wrote:
>
>
> Hi,
>
> We have a number of new test accounts now that the Sandbox has been 
> retired, but in order to make sure our code works well with the various 
> budget settings, we have the need to be able to set "Focus on conversions" 
> for a campaign, without having to fully set up the Conversion Optimizer. Is 
> this possible? I was hoping that for the test accounts, this would be 
> possible to help out developers cover various scenarios.
>
> Thanks,
> Hans
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: USER_LOCATIONS_PERFORMANCE_REPORT instead of GEO_PERFORMANCE_REPORT

2013-01-16 Thread Takeshi Hagikura (AdWords API Team)
Hello, 

Unfortunately, user location performance report is not support in API.
All report types available in API are listed here
https://developers.google.com/adwords/api/docs/appendix/reports

Best,
- Takeshi, AdWords API Team

On Wednesday, January 16, 2013 8:02:55 AM UTC+9, Evin Levey wrote:
>
> I've been doing some Ad Hoc reporting, and I was hoping to get the same 
> view that I can get in the AdWords UI -- showing the conversion rates by 
> the user location dimension.
>
> Ultimately I would like a list like this:
>
> Country   ClicksImpressions
> Algeria55  2,1234
> Andora  7  865
>
> where country represents the user's actual location, not the combined 
> LOP/AOI.
>
> The closest I can get is using the GEO_PERFORMANCE_REPORT, but that breaks 
> down by the Country/Region 'AOI' as well as 'LOP'.  Is there an API analog 
> to the User Locations Performance reporting in the UI?
>
> many thanks,
>
> Evin
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Remarketing List Tracking Tag, returns different image tag

2013-01-16 Thread Takeshi Hagikura (AdWords API Team)
Hello

How did you obtain the tag for the second one (/googleads.g.doubleclick.net
/)?
I'm able to get the tag for the same domain for API in UI as well.

But as a note, basically those two domains are indenticaly since both have 
the same canonical name.

$ nslookup www.googleadservices.com
Server: 172.16.255.1
Address: 172.16.255.1#53

Non-authoritative answer:
www.googleadservices.com canonical name = pagead.l.doubleclick.net.
Name: pagead.l.doubleclick.net
Address: 74.125.31.156
Name: pagead.l.doubleclick.net
Address: 74.125.31.157
Name: pagead.l.doubleclick.net
Address: 74.125.31.154
Name: pagead.l.doubleclick.net
Address: 74.125.31.155


$ nslookup googleads.g.doubleclick.net
Server: 172.16.255.1
Address: 172.16.255.1#53

Non-authoritative answer:
googleads.g.doubleclick.net canonical name = pagead.l.doubleclick.net.
Name: pagead.l.doubleclick.net
Address: 74.125.31.156
Name: pagead.l.doubleclick.net
Address: 74.125.31.157
Name: pagead.l.doubleclick.net
Address: 74.125.31.154
Name: pagead.l.doubleclick.net
Address: 74.125.31.155


Best,
- Takeshi, AdWords API Team



On Wednesday, January 16, 2013 2:34:15 PM UTC+9, 马玉潮 wrote:
>
>  I use *UserListService* to add a remarketing list, then I get the 
> tracking tag by api, but it's different from the tracking tag which i got 
> from adwords page.
>
> eg. I create a remarketing list through api, it results a tracking tag 
> like below
>
> 
>
>
> but i check this remarketing list in adwords page, the tracking tag is 
>
> 
>
> the domains are different, what's the difference? and how can i get the 
> tracking tag same as tag in the page?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: TrafficEstimator for existing campaigns

2013-01-16 Thread Takeshi Hagikura (AdWords API Team)
Hello mm,

It's supposed to be possible.
Can you please share the request and response xml?

Best,
- Takeshi, AdWords API Team

On Thursday, January 17, 2013 3:40:27 AM UTC+9, mm wrote:
>
> Hey guys -
> I am trying to run through some keyword traffic estimates for existing 
> keywords - which appears feasible from the documentation. However, I am 
> getting an EntityNotFound.INVALID_ID error from the CampaignService when I 
> submit my TrafficEstimatorRequest. I have verified that the id is valid. 
> Has anyone had any success using the TrafficEstimator for existing 
> Campaigns/AdGroups/Keywords? The only examples I have seen are for new 
> campaigns & adgroups.
>
> Thanks a bunch -
> mm
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: No SearchBudgetLostImpressionShare in ad group performance report

2013-01-16 Thread Takeshi Hagikura (AdWords API Team)
Hi pete,

ContentBudgetLostImpressionShare, SearchBudgetLostImpressionShare are not 
available for AdGroup Performance Report as Budgets can not be set ad 
AdGroup level.
Those columns are only available for Account Performance Report, and 
Campaign Performance Report.
Will correct the blog post.

Best,
- Takeshi, AdWords API Team


On Wednesday, January 16, 2013 10:37:20 PM UTC+9, pete wrote:
>
> Hi Paul
>
> As you pointed out, the API documentation does not mention 
> "SearchBudgetLostImpressionShare" 
> nor whereas the blog post 
> http://googleadsdeveloper.blogspot.co.uk/2012/12/impression-share-reporting-changes.htmlspecifically
>  mentions all the new IS columns (including 2 columns relating 
> to "Budget").
>
> Requesting the columns as specified in the Blog throws...
>
> **
> * *
> * ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT*
> * *
> * ContentBudgetLostImpressionShare*
> * *
> **
> *
> *
> *
> *
> **
> * *
> * ReportDefinitionError.INVALID_FIELD_NAME_FOR_REPORT*
> * *
> * SearchBudgetLostImpressionShare*
> * *
> **
>
>
> Are these columns going to show up in the API?
>
> pete
>
>
> On Wednesday, 16 January 2013 10:51:04 UTC, Paul Matthews (AdWords API 
> Team) wrote:
>>
>> Hi Arthur,
>>
>> The report type 
>> definitionslists
>>  all the data we have available, if a column doesn't exist, it's 
>> because we don't store that data.
>>
>> If you include columns that don't exist in the report, it responds with 
>> an error.
>>
>> Regards,
>>
>> - Paul, AdWords API Team.
>>
>> On Tuesday, 15 January 2013 15:00:01 UTC, Arthur Gerigk wrote:
>>>
>>> Asking for this column results in an error of the api and also 
>>> https://developers.google.com/adwords/api/docs/appendix/reports?hl=en#ad-group
>>>   
>>> doesn't contain it.
>>>
>>> Is there any reason for this?
>>>
>>

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