Re: Quotas for this project have been disabled due to suspected abuse. = what abuse? Why did this happen?

2013-11-25 Thread Danial Klimkin
Hello Purasilk,


This group is for discussing AdWords API only. Are you describing a problem 
with AdWords API?


-Danial, AdWords API Team.


On Friday, November 22, 2013 12:44:16 AM UTC+4, Purasilk Thai land wrote:

 Quotas for this project have been disabled due to suspected abuse. = 
 what abuse?  Why did this happen?

 I don't know what abuse they are talking about.  Can someone explain 
 this?  We only have ~200 requests per day.. of the 50,000/day allotted.




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Pending API token review

2013-11-21 Thread Danial Klimkin
Hello,


Please fill in this form to ensure timely update:

  https://services.google.com/fb/forms/apicontact/


-Danial, AdWords API Team.

On Wednesday, November 20, 2013 12:52:38 PM UTC+4, enol.i...@mediasq.com 
wrote:

 Thanks Danial, we've updated the email on the API application. Should we 
 receive an email now? best regards


 El jueves, 14 de noviembre de 2013 10:17:22 UTC+1, Danial Klimkin escribió:

 Hello,


 No, the application contains a different email address: swt@...

 Please update the application, for that log in under the MCC account, go 
 to the AdWords API Center and edit the request.


 -Danial, AdWords API Team.


 On Wednesday, November 13, 2013 8:38:17 PM UTC+4, enol.i...@mediasq.comwrote:

 Thank you Danial, we've checked the email address on the AdWords API 
 Center page and it should not generate a bounce from our server, it's a 
 working email address: enol.i...@mediasq.com . Please could you confirm 
 this is the email you see in the API application? thanks

 El miércoles, 13 de noviembre de 2013 16:36:13 UTC+1, Danial Klimkin 
 escribió:

 Hello,


 It looks like the email address you've provided in the API application 
 is not valid, we got an auto-response from your server with a bounce.

 Please update the email address on the AdWords API Center page.


 -Danial, AdWords API Team.


 On Wednesday, November 13, 2013 5:32:46 PM UTC+4, 
 enol.i...@mediasq.comwrote:

 Hi Danial, the MCC account ID we've applied for is 171-318-2861. Thank 
 you!

 El lunes, 11 de noviembre de 2013 16:23:11 UTC+1, Danial Klimkin 
 escribió:

 Hello,


 This account is not an MCC account. What is the MCC account ID you've 
 applied for the API for?


 -Danial, AdWords API Team.


 On Thursday, October 31, 2013 9:24:05 PM UTC+4, 
 enol.i...@mediasq.comwrote:

 Hi, we've applied for a developer AdWords API token several weeks 
 ago and didn't received any response yet. How long should it take to 
 receive the evaluation? Our customer ID is 603-607-8328



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: get keyword match Type in v201306 using targeting idea service

2013-11-20 Thread Danial Klimkin
Hello Ismail,


Now I understand the question, in order to make an API request with this 
option enabled, you need to send both RelatedToQuerySearchParameter and 
IdeaTextFilterSearchParameter parameters:

  RelatedToQuerySearchParameter, queries = keyword1, keyword2, ...
  IdeaTextFilterSearchParameter, included = keyword1, keyword2, ...


-Danial, AdWords API Team.


On Monday, November 18, 2013 4:12:53 PM UTC+4, Ismail Ansari wrote:

 Hi,

 look at the screenshot i want to get keywords ideas related to my search 
 query how can i implement this using adwords api php.
 currently i'm using targeting idea service but don't know how to achieve 
 this

 my sample code is :

  $keyword = $search_params['keyword'];
  
   // Create selector.
   $selector = new TargetingIdeaSelector();
   $selector-requestType = 'IDEAS';
   $selector-ideaType = 'KEYWORD';
   $selector-requestedAttributeTypes = array('KEYWORD_TEXT', 
 'SEARCH_VOLUME'
   ,'AVERAGE_CPC','COMPETITION'); //'TARGETED_MONTHLY_SEARCHES'

   
   $languageParameter = new LanguageSearchParameter();
   $english = new Language();
   $english-id = $search_params['language'];
   $languageParameter-languages = array($english);
   
   $locationParameter = new LocationSearchParameter();
   $location = new Location();
   $location-id = $search_params['country'];
   $locationParameter-locations = array($location);
   

   $relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
   $relatedToQuerySearchParameter-queries = array($keyword);
   $selector-searchParameters[] = $relatedToQuerySearchParameter;
   $selector-searchParameters[] = $languageParameter;
   $selector-searchParameters[] = $locationParameter;

 $paging = new Paging();
 $paging-startIndex = 0;
 $paging-numberResults = 50;
 $selector-paging = $paging;

  
 // Make the get request.
 $page = $targetingIdeaService-get($selector);


 https://lh4.googleusercontent.com/-hZbGv1tJEw4/UooCa_z6srI/AAk/LpIG4hTzoYw/s1600/sample-keyword.png


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: adUnionId error

2013-11-19 Thread Danial Klimkin
Hello pete,


For copying Template Ads please consider using originAdId field, see 
release notes:

  https://developers.google.com/adwords/api/docs/reference/#v201309

Some template ad fields are not available via the API and can only be 
copied server-side.


-Danial, AdWords API Team.


On Tuesday, November 12, 2013 4:31:17 PM UTC+4, pete wrote:

 Hello

 I'm getting an error when creating a TemplateAd
 AdError: the violating text is , located in the adUnionId field; the 
 Policy violated is called 

 The process flow is to create an Ad by using the API to get an Ad, make 
 a copy in memory, change the url field, set the id field to null then 
 attempt to create a new ad from this copy.

 Which throws the error above.

 The adUnionId field is populated (from the get) and I don't attempt to 
 make any changes to it.

 Can you throw some light on what I'm doing wrong. Thanks

 pete


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: OAuth 2.0 error, while upgrading to newer version (i.e. v201306)

2013-11-19 Thread Danial Klimkin
Hello Arthur,


Please see:

  
http://googleadsdeveloper.blogspot.ru/2013/09/announcing-sunset-of-clientlogin-in.html

All client library examples can be ran with both ClientLogin and OAuth2.


-Danial, AdWords API Team.

On Tuesday, November 19, 2013 2:33:01 AM UTC+4, Arthur Pemberton wrote:

 Why is it strongly discouraged? The OAuth2 examples are rarely equivalent.

 On Sunday, July 28, 2013 7:05:47 AM UTC-4, Majo Mikula wrote:

 Keep in mind that ClientLogin API is deprecated, and its use is strongly 
 discouraged.
 See https://developers.google.com/accounts/docs/AuthForInstalledApps for 
 details.


 On Wednesday, 24 July 2013 17:37:26 UTC+2, CFJ wrote:

 I had the same problem on upgrade from v201209 to v201306.  Fixed it by 
 adding a key to the AdWordsApi section of my app.config to explicitly 
 utilize ClientLogin authentication.  


   AdWordsApi
 add key=AuthorizationMethod value=ClientLogin /
   /AdWordsApi




 On Wednesday, July 24, 2013 5:54:46 AM UTC-4, Atul wrote:

 I am getting an error of OAuth 2.0 authorization, while upgrading to 
 newer version (i.e. v201306) of AdWords API. Previously, I was using the 
 v201209 version of API and everything was working fine, but on July 22 
 v201209 was discontinued. So, I was upgrading to the newer version, but it 
 is giving me error. With v201209, I was not using any type of 
 authorization, it was simple Client Login, and I want to implement same 
 thing with v201306, but it is not working and needed OAuth 2.0 to 
 implement. I didn't make any changes in my existing application, just 
 replaced the reference of older version dll with newer dll. After changing 
 the references, I am getting this error:

  
 Value cannot be null.
 Parameter name: Looks like your application is not configured to use 
 OAuth2 properly. Required OAuth2 parameter RefreshToken is missing. You 
 may 
 run Common\\Utils\\OAuth2TokenGenerator.cs to generate a default OAuth2 
 configuration.
  
 Please help me in resolving this issue.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Waiting for your developer token to be reviewed? Read this first!

2013-11-19 Thread Danial Klimkin
We will typically contact you regarding your application within a week of 
applying. Here are a few things that you can do to speed up the review 
process:


   1. Confirm that your Developer Contact Email in the AdWords API Center 
   of your MCC account is accurate and actively monitored. You will receive 
   details regarding your application on this email address. Please ensure 
   that these emails are not marked as spam. 
   2. Make sure you have signed the AdWords API Terms and Conditions. For 
   instructions, see Step 3 of Signing up for the AdWords 
APIhttps://developers.google.com/adwords/api/docs/signingup
   .
   3. Double check that you have classified your company 
correctlyhttp://adwords.google.com/support/aw/bin/answer.py?hl=enanswer=177586.
 
   
   4. If you have created a new MCC account in order to apply for the API 
   token, please link all of your existing accounts or the accounts of your 
   clients to the new MCC. See this 
linkhttp://support.google.com/adwords/agency/bin/answer.py?hl=enanswer=7732for
 instructions.
   5. Please be sure to reply to all emails from the tokens review team on 
   the same thread as our inquiries, and maintain the same subject for 
   timely processing of your application. 
   6. If your application was rejected, you may re-apply from the same MCC 
   and explain your case in your re-application.


For more information, please read the Signing up for the AdWords 
APIhttps://developers.google.com/adwords/api/docs/signinguparticle on our 
documentation 
site. If you have a technical questions about using AdWords API, feel free 
to post it on this forum. If you have questions about the token review 
process or policy, you may ask us on the same email thread used to process 
your application or using this 
formhttps://services.google.com/fb/forms/apicontact/
.

Best,

AdWords API Team

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Receiving TARGET_ERROR when creating campaign

2013-11-18 Thread Danial Klimkin
Hello Jacob,


It is no longer allowed to create campaigns with all networks disabled. 
Please see:

  
http://googleadsdeveloper.blogspot.ru/2013/11/adwords-network-settings-update.html


-Danial, AdWords API Team.


On Friday, November 15, 2013 5:17:16 AM UTC+4, Jacob Lucas wrote:

 This is an error which has started happening in the past week. We haven't 
 changed any code on our end around this logic, so I'm curious what's 
 triggering this error. We are calling the 201309 API to create a new 
 campaign. This is happening every time we make the call. The error message 
 is

 Errors: partner_parameter_validation: Partner API error: Field 
 'networkSetting' containing '' is invalid: TARGET_ERROR... 
 [com.google.api.ads.adwords.axis.v201309.cm.TargetError: 
 reason=TARGET_ERROR, 
 typeDesc=org.apache.axis.description.TypeDesc@53eacdc4, 
 apiErrorType=TargetError, fieldPath=operations[0].operand.networkSetting, 
 trigger=, errorString=TargetError.TARGET_ERROR, ]

 which is weird, since we're populating the networkSetting correctly.

 Request (authToken / clientCustomerId / developerToken have been 
 obfuscated for security):

 ?xml version=1.0 encoding=UTF-8?
 soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; 
 xmlns:xsd=http://www.w3.org/2001/XMLSchema; xmlns:xsi=
 http://www.w3.org/2001/XMLSchema-instance;
  soapenv:Header
   ns1:RequestHeader xmlns:ns1=
 https://adwords.google.com/api/adwords/cm/v201309; 
 soapenv:mustUnderstand=0
ns1:authToken**/ns1:authToken
ns1:clientCustomerId**/ns1:clientCustomerId
ns1:developerToken**/ns1:developerToken
ns1:userAgentfooAgent (AwApi-Java, AdWords-Axis/1.20.0, 
 Common-Java/1.20.0, Axis/1.4, Java/1.6.0_22, maven)/ns1:userAgent
ns1:validateOnlyfalse/ns1:validateOnly
ns1:partialFailurefalse/ns1:partialFailure
   /ns1:RequestHeader
  /soapenv:Header
  soapenv:Body
   mutate xmlns=https://adwords.google.com/api/adwords/cm/v201309;
operations
 operatorADD/operator
 operand
  nameGoogle`APITestjVQpXakjZh/name
  statusACTIVE/status
  budget
   budgetId195172715/budgetId
   nameMarchex Google Campaign Budget 
 #1397d5c3-fc62-4b4a-a064-ed2d594b4e82-t1384477396331/name
   periodDAILY/period
   amount
microAmount500/microAmount
   /amount
   deliveryMethodSTANDARD/deliveryMethod
  /budget
  settings xmlns:ns2=
 https://adwords.google.com/api/adwords/cm/v201309; 
 xsi:type=ns2:KeywordMatchSetting
   optInfalse/optIn
  /settings
  settings xmlns:ns3=
 https://adwords.google.com/api/adwords/cm/v201309; 
 xsi:type=ns3:GeoTargetTypeSetting
   positiveGeoTargetTypeDONT_CARE/positiveGeoTargetType
  /settings
  




 *networkSetting  targetGoogleSearchfalse/targetGoogleSearch  
 targetSearchNetworkfalse/targetSearchNetwork  
 targetContentNetworkfalse/targetContentNetwork  
 targetPartnerSearchNetworkfalse/targetPartnerSearchNetwork 
 /networkSetting*
  biddingStrategyConfiguration
   biddingStrategyTypeMANUAL_CPC/biddingStrategyType
  /biddingStrategyConfiguration
 /operand
/operations
   /mutate
  /soapenv:Body
 /soapenv:Envelope

 Response:

 ?xml version=1.0 encoding=UTF-8?
 soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
  soap:Header
   ResponseHeader xmlns=https://adwords.google.com/api/adwords/cm/v201309
 
requestId0004eb2cc36fd0800a42c22a287a/requestId
serviceNameCampaignService/serviceName
methodNamemutate/methodName
operations1/operations
responseTime105/responseTime
   /ResponseHeader
  /soap:Header
  soap:Body
   soap:Fault
faultcodesoap:Server/faultcode
faultstring[TargetError.TARGET_ERROR @ 
 operations[0].operand.networkSetting]/faultstring
detail
 ApiExceptionFault xmlns=
 https://adwords.google.com/api/adwords/cm/v201309;
  message[TargetError.TARGET_ERROR @ 
 operations[0].operand.networkSetting]/message
  ApplicationException.TypeApiException/ApplicationException.Type
  errors xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
 xsi:type=TargetError
   fieldPathoperations[0].operand.networkSetting/fieldPath
   trigger/
   errorStringTargetError.TARGET_ERROR/errorString
   ApiError.TypeTargetError/ApiError.Type
   reasonTARGET_ERROR/reason
  /errors
 /ApiExceptionFault
/detail
   /soap:Fault
  /soap:Body
 /soap:Envelope

 The API doc says that TARGET_ERROR means the error is unknown.


 https://developers.google.com/adwords/api/docs/reference/v201309/CampaignService.TargetError

 Can you help us understand what's happening here?

 Thanks!
 Jacob.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum 

Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-18 Thread Danial Klimkin
Hello assaf,


The Java client library has support for report downloads. Please see this 
example:

  
https://code.google.com/p/google-api-ads-java/source/browse/examples/adwords_axis/src/main/java/adwords/axis/v201309/reporting/DownloadCriteriaReport.java


-Danial, AdWords API Team.


On Saturday, November 16, 2013 10:49:22 PM UTC+4, assaf wrote:

 Hi,

 Can anyone post a link to such an example - using HTTP Request for adwords 
 report in  Java ?

 Thanks.

 On Thursday, November 14, 2013 11:06:14 AM UTC+2, Danial Klimkin wrote:

 Hello Bastian, assaf,


 Bastian, please refer to the blog post mentioned above:

   
 googleadsdeveloper.blogspot.com/2013/10/adwords-api-how-to-migrate-from-stats.html

 assaf, you can get a report via HTTP request and then it's up to you 
 whether you want to keep it in memory or save to a file. Most of our client 
 libraries support both flows.


 -Danial, AdWords API Team.


 On Thursday, November 14, 2013 10:40:58 AM UTC+4, assaf wrote:

 *Can some one from adwords please confirm this:*

 In order to get Campaign/Adgroup/Ad/Keywords stats (impressions/CPC/Cost 
 etc.)  a report needs to be generated and written to
 your file system. If you have a web application that needs this info - 
 the file in the file system must be read for this???

 Thank you.


 On Tuesday, November 12, 2013 9:35:12 AM UTC+2, b.ka...@mso-digital.dewrote:

 Hi there,
  
 with AdWords API i want to get some stats about my campaigns like 
 impressions, costs, clicks, ctr.
 With older API versions like 201306 it was very easy to get these stats 
 with the type Stats.
  
 In v201309 this type is deprecated. Instead the 
 ReportDefinitionService should be used, to download the
 desired report file in *.csv or *.xls.
  
 If i want to show some stats in a web application it is very 
 circumstantial to download such a report every time and parse it 
 afterwards 
 (every time
 i refresh that page).
  
 Is there an easier way to read out these stats? I don't know why things 
 were made so complicated in v201309. Before it was very easy to include 
 these stats
 data in own web apps.
  
 Best Regards
 Bastian K.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Check remaining balance for an MCC account with enabled credit line

2013-11-18 Thread Danial Klimkin
Hello,


Unfortunately no, this information is just not available to the API.


-Danial, AdWords API Team.


On Thursday, November 14, 2013 6:33:18 PM UTC+4, Артокс Медиа wrote:

 Is there any possibilities to use AlertService for MCC account with 
 enabled credit line?  At this time AlertService don't return any alerts, 
 even if we will set the budget expiration date on today. Thanks in advance.

 четверг, 14 ноября 2013 г., 12:13:01 UTC+3 пользователь Danial Klimkin 
 написал:

 Hello,


 Unfortunately budgets information is not available in the API so there is 
 no way to obtain this field at the moment.


 -Danial, AdWords API Team.


 On Tuesday, November 12, 2013 7:11:04 PM UTC+4, Артокс Медиа wrote:


 https://lh5.googleusercontent.com/-JWNN-ImDo54/UoJE6B6a5RI/AAw/oamvvA7O2a0/s1600/Capture2.PNG


 https://lh3.googleusercontent.com/--JFK-ITPqnE/UoJE4FhMoKI/AAo/PzZnjEI5p-w/s1600/Capture.PNG
 Hello, is there a way to get remaining budget or budget percent spent 
 for different clients at MCC account with enabled credit line? We have 
 hundreds of clients and we would like to send alert emails to our account 
 managers about low clients balance. Unfortunatly we could not find a way to 
 do so using AdWords API.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-18 Thread Danial Klimkin
Hello assaf,


It should be easy to modify this example to avoid saving to a file. You can 
read the report directly by using the object returned by response.
getInputStream(), just read the report line by line instead of saving to a 
file.


-Danial, AdWords API Team.


On Monday, November 18, 2013 1:19:52 PM UTC+4, assaf wrote:

 Thank you Danial,

 I was wondering about an example for the specific implementation of HTTP 
 requests as you suggested for my needs (not actually writing the report 
 data to a file).



 On Monday, November 18, 2013 10:19:15 AM UTC+2, Danial Klimkin wrote:

 Hello assaf,


 The Java client library has support for report downloads. Please see this 
 example:

   
 https://code.google.com/p/google-api-ads-java/source/browse/examples/adwords_axis/src/main/java/adwords/axis/v201309/reporting/DownloadCriteriaReport.java


 -Danial, AdWords API Team.


 On Saturday, November 16, 2013 10:49:22 PM UTC+4, assaf wrote:

 Hi,

 Can anyone post a link to such an example - using HTTP Request for 
 adwords report in  Java ?

 Thanks.

 On Thursday, November 14, 2013 11:06:14 AM UTC+2, Danial Klimkin wrote:

 Hello Bastian, assaf,


 Bastian, please refer to the blog post mentioned above:

   
 googleadsdeveloper.blogspot.com/2013/10/adwords-api-how-to-migrate-from-stats.html

 assaf, you can get a report via HTTP request and then it's up to you 
 whether you want to keep it in memory or save to a file. Most of our 
 client 
 libraries support both flows.


 -Danial, AdWords API Team.


 On Thursday, November 14, 2013 10:40:58 AM UTC+4, assaf wrote:

 *Can some one from adwords please confirm this:*

 In order to get Campaign/Adgroup/Ad/Keywords stats 
 (impressions/CPC/Cost etc.)  a report needs to be generated and written to
 your file system. If you have a web application that needs this info - 
 the file in the file system must be read for this???

 Thank you.


 On Tuesday, November 12, 2013 9:35:12 AM UTC+2, 
 b.ka...@mso-digital.dewrote:

 Hi there,
  
 with AdWords API i want to get some stats about my campaigns like 
 impressions, costs, clicks, ctr.
 With older API versions like 201306 it was very easy to get these 
 stats with the type Stats.
  
 In v201309 this type is deprecated. Instead the 
 ReportDefinitionService should be used, to download the
 desired report file in *.csv or *.xls.
  
 If i want to show some stats in a web application it is very 
 circumstantial to download such a report every time and parse it 
 afterwards 
 (every time
 i refresh that page).
  
 Is there an easier way to read out these stats? I don't know why 
 things were made so complicated in v201309. Before it was very easy to 
 include these stats
 data in own web apps.
  
 Best Regards
 Bastian K.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Reading stats like impressions or total cost with v201309 without downloading a file

2013-11-14 Thread Danial Klimkin
Hello Bastian, assaf,


Bastian, please refer to the blog post mentioned above:

  
googleadsdeveloper.blogspot.com/2013/10/adwords-api-how-to-migrate-from-stats.html

assaf, you can get a report via HTTP request and then it's up to you 
whether you want to keep it in memory or save to a file. Most of our client 
libraries support both flows.


-Danial, AdWords API Team.


On Thursday, November 14, 2013 10:40:58 AM UTC+4, assaf wrote:

 *Can some one from adwords please confirm this:*

 In order to get Campaign/Adgroup/Ad/Keywords stats (impressions/CPC/Cost 
 etc.)  a report needs to be generated and written to
 your file system. If you have a web application that needs this info - the 
 file in the file system must be read for this???

 Thank you.


 On Tuesday, November 12, 2013 9:35:12 AM UTC+2, b.ka...@mso-digital.dewrote:

 Hi there,
  
 with AdWords API i want to get some stats about my campaigns like 
 impressions, costs, clicks, ctr.
 With older API versions like 201306 it was very easy to get these stats 
 with the type Stats.
  
 In v201309 this type is deprecated. Instead the ReportDefinitionService 
 should be used, to download the
 desired report file in *.csv or *.xls.
  
 If i want to show some stats in a web application it is very 
 circumstantial to download such a report every time and parse it afterwards 
 (every time
 i refresh that page).
  
 Is there an easier way to read out these stats? I don't know why things 
 were made so complicated in v201309. Before it was very easy to include 
 these stats
 data in own web apps.
  
 Best Regards
 Bastian K.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Ad extension report not getting output

2013-11-14 Thread Danial Klimkin
Hello Chirag,


Upgraded ad extensions are available with the feed items report:

  
https://developers.google.com/adwords/api/docs/appendix/reports#placeholder-feed-item


-Danial, AdWords API Team.


On Tuesday, November 12, 2013 4:39:25 PM UTC+4, Chirag wrote:

 Hello,

 Ad Extensions Performance Report and campaign Adextensions report not 
 giving any ad extensions.

 But in account it shows location and sitelink extensions.

 Any other way to get AdExtensions?

 Thanks,
 Chirag


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Check remaining balance for an MCC account with enabled credit line

2013-11-14 Thread Danial Klimkin
Hello,


Unfortunately budgets information is not available in the API so there is 
no way to obtain this field at the moment.


-Danial, AdWords API Team.


On Tuesday, November 12, 2013 7:11:04 PM UTC+4, Артокс Медиа wrote:


 https://lh5.googleusercontent.com/-JWNN-ImDo54/UoJE6B6a5RI/AAw/oamvvA7O2a0/s1600/Capture2.PNG


 https://lh3.googleusercontent.com/--JFK-ITPqnE/UoJE4FhMoKI/AAo/PzZnjEI5p-w/s1600/Capture.PNG
 Hello, is there a way to get remaining budget or budget percent spent for 
 different clients at MCC account with enabled credit line? We have hundreds 
 of clients and we would like to send alert emails to our account managers 
 about low clients balance. Unfortunatly we could not find a way to do so 
 using AdWords API.



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to get report in MMC

2013-11-14 Thread Danial Klimkin
Hello Emin,


Reports are only available on account (non-MCC) level. To get an MCC report 
you need to retrieve one report per sub-account and join them on the client 
side.

See also our AwReporting tool that can be handy for this:

  
http://googleadsdeveloper.blogspot.com/2013/11/introducing-awreporting-new-java-tool.html


-Danial, AdWords API Team.


On Wednesday, November 13, 2013 6:28:04 PM UTC+4, Emin Aydan wrote:

 Hi,
 I want to get report in MMC. 
 How can I do?

 Best Regards.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Pending API token review

2013-11-14 Thread Danial Klimkin
Hello,


No, the application contains a different email address: swt@...

Please update the application, for that log in under the MCC account, go to 
the AdWords API Center and edit the request.


-Danial, AdWords API Team.


On Wednesday, November 13, 2013 8:38:17 PM UTC+4, enol.i...@mediasq.com 
wrote:

 Thank you Danial, we've checked the email address on the AdWords API 
 Center page and it should not generate a bounce from our server, it's a 
 working email address: enol.i...@mediasq.com javascript: . Please could 
 you confirm this is the email you see in the API application? thanks

 El miércoles, 13 de noviembre de 2013 16:36:13 UTC+1, Danial Klimkin 
 escribió:

 Hello,


 It looks like the email address you've provided in the API application is 
 not valid, we got an auto-response from your server with a bounce.

 Please update the email address on the AdWords API Center page.


 -Danial, AdWords API Team.


 On Wednesday, November 13, 2013 5:32:46 PM UTC+4, enol.i...@mediasq.comwrote:

 Hi Danial, the MCC account ID we've applied for is 171-318-2861. Thank 
 you!

 El lunes, 11 de noviembre de 2013 16:23:11 UTC+1, Danial Klimkin 
 escribió:

 Hello,


 This account is not an MCC account. What is the MCC account ID you've 
 applied for the API for?


 -Danial, AdWords API Team.


 On Thursday, October 31, 2013 9:24:05 PM UTC+4, enol.i...@mediasq.comwrote:

 Hi, we've applied for a developer AdWords API token several weeks ago 
 and didn't received any response yet. How long should it take to receive 
 the evaluation? Our customer ID is 603-607-8328



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to specify which account to interact with?

2013-11-14 Thread Danial Klimkin
Hello Michael,


1. No, just make sure to use the credentials that have access to the test 
account (test MCC login?) and a production developer token.

2. Sounds like you are using a wrong login for the access. Please use the 
one you've created test MCC with.


-Danial, AdWords API Team.


On Thursday, November 14, 2013 2:30:55 AM UTC+4, Michael Lai wrote:

 Thanks. A couple more questions:

 1) Do I need to link the test MCC account with the production MCC account 
 somehow? Or does it just know that the credentials of the production MCC 
 account should work with the test account?

 2) What else do I need to do other than specifying the Client Customer ID? 
 Whenever I specify it (for the production MCC, test MCC, or , I get a 
 [AuthorizationError.USER_PERMISSION_DENIED @ ; trigger:'null'] error. 
 Even if I put in the Client Customer ID of the MCC account, I get that 
 error.


 On Monday, November 11, 2013 8:54:36 PM UTC-8, Michael Lai wrote:

 Hi,

 I just got started on the API and think I successfully went through the 
 Auth2.0 setup process. However, when I run GetCampaigns.php, it is still 
 returning no campaigns, so I suspect that I am doing something wrong or 
 interacting with the wrong account.

 Basically, what I did was register a Native Application while logged in 
 with the id used for my MCC account. I then used the Client ID and Client 
 Secret to generate the refresh token and updated all that information in 
 the auth.ini file. I have a few questions:

 1) How can I confirm that I am interacting with the correct account? I 
 want to see if that is the reason why I am not getting any campaigns.
 2) How can I interact with the test account? I have read that all the 
 authentication information should stay the same, so what changes?
 3) When do I need to specify Client Customer ID?

 Thanks in advance!
 Michael



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: get keyword match Type in v201306 using targeting idea service

2013-11-13 Thread Danial Klimkin
Hello Ismail,


Can you please describe in more details what are you trying to achieve? The 
parameter was replaced as I described, otherwise the behavior should be the 
same.


-Danial, AdWords API Team.


On Tuesday, November 12, 2013 8:05:03 PM UTC+4, Ismail Ansari wrote:

 Hi Danial,

 i'm using RelatedToQuerySearchParameter but still same issue it would be 
 favour if you share same piece of code.




-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Pending API token review

2013-11-13 Thread Danial Klimkin
Hello,


It looks like the email address you've provided in the API application is 
not valid, we got an auto-response from your server with a bounce.

Please update the email address on the AdWords API Center page.


-Danial, AdWords API Team.


On Wednesday, November 13, 2013 5:32:46 PM UTC+4, enol.i...@mediasq.com 
wrote:

 Hi Danial, the MCC account ID we've applied for is 171-318-2861. Thank you!

 El lunes, 11 de noviembre de 2013 16:23:11 UTC+1, Danial Klimkin escribió:

 Hello,


 This account is not an MCC account. What is the MCC account ID you've 
 applied for the API for?


 -Danial, AdWords API Team.


 On Thursday, October 31, 2013 9:24:05 PM UTC+4, enol.i...@mediasq.comwrote:

 Hi, we've applied for a developer AdWords API token several weeks ago 
 and didn't received any response yet. How long should it take to receive 
 the evaluation? Our customer ID is 603-607-8328



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to specify which account to interact with?

2013-11-13 Thread Danial Klimkin
Hello Michael,


Account ID is specified in clientCustomerId field of the SOAP request 
header. How is it done depends on the library, for PHP see the Basic 
usage of the README:

  https://code.google.com/p/google-api-adwords-php/source/browse/README

1. This sounds likely, as MCC account can't have any campaigns.
2. The same way -- just include it's clientCustomerId in the request.
3. For every request.


-Danial, AdWords API Team.


On Tuesday, November 12, 2013 8:54:36 AM UTC+4, Michael Lai wrote:

 Hi,

 I just got started on the API and think I successfully went through the 
 Auth2.0 setup process. However, when I run GetCampaigns.php, it is still 
 returning no campaigns, so I suspect that I am doing something wrong or 
 interacting with the wrong account.

 Basically, what I did was register a Native Application while logged in 
 with the id used for my MCC account. I then used the Client ID and Client 
 Secret to generate the refresh token and updated all that information in 
 the auth.ini file. I have a few questions:

 1) How can I confirm that I am interacting with the correct account? I 
 want to see if that is the reason why I am not getting any campaigns.
 2) How can I interact with the test account? I have read that all the 
 authentication information should stay the same, so what changes?
 3) When do I need to specify Client Customer ID?

 Thanks in advance!
 Michael


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Test Account on Google Adword

2013-11-12 Thread Danial Klimkin
Hello Naman,


I will lock this thread to avoid duplication and will respond on the 
original one.


-Danial.


On Monday, November 11, 2013 9:33:56 PM UTC+4, naman jindal wrote:


 Hi Danial,

 I am also facing the same issue. I am not able to bypass the invalid_grant 
 exception for a few days now.

 Can you please help us. Here i my post for any details:
 https://groups.google.com/forum/#!topic/adwords-api/WXXZDQJYYqI

 Thanks!


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Invalid Grant - Need Help OAuth2 - Urgent Pelase!

2013-11-12 Thread Danial Klimkin
Hello Naman,


I suggest clearing the config and trying to do the OAuth flow again.

Before starting please make sure to log off from any google account in your 
browser and clear cookies. When following the auth URL you will be 
presented with the login screen. Make sure to log in with you *AdWords API 
account details.*


-Danial, AdWords API Team.


On Sunday, November 10, 2013 6:35:31 PM UTC+4, naman jindal wrote:


 Hi Anash,

 Did you get my message?
 I am waiting for your inputs/suggestions.

 Thanks!


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Report for Ads on Youtube?

2013-11-12 Thread Danial Klimkin
Hello Stephane,


AdWords for Video campaigns are currently not available in the API. We have 
no time estimation currently.


-Danial, AdWords API Team.


On Monday, November 11, 2013 11:21:34 PM UTC+4, Stephane wrote:

 Hi,

 I can't seem to find how to get statistics for the Ads displayed in 
 Youtube videos? 

 https://developers.google.com/adwords/api/docs/appendix/reports 

 Am I missing something? If not, is this in the pipeline?

 Thanks,

 Stéphane


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: QuotaCheckError.ACCOUNT_INACTIVE

2013-11-11 Thread Danial Klimkin
Hi Denis,


Please see:

  https://groups.google.com/forum/#!topic/adwords-api/YJ4cC60Xts8

I am locking this thread as the last update is not related to the original 
poster.


-Danial, AdWords API Team.

On Tuesday, November 5, 2013 4:13:02 PM UTC+4, Denis Borisov wrote:

 Hello!

 I put my production pending developer token to the settings and got the 
 error An error has occurred: [QuotaCheckError.INCOMPLETE_SIGNUP @ ; 
 trigger:''].

 What shall I do?

 среда, 2 октября 2013 г., 3:02:12 UTC+4 пользователь Danial Klimkin 
 написал:

 Hi,


 It looks like you are using a developer token from test mcc account. 
 Please use one from a production MCC (even if it is still under review).


 -Danial, AdWords API Team.


 On Wednesday, October 2, 2013 1:38:35 AM UTC+4, testad...@gmail.comwrote:

 Hi,

 Im using my test account [451-157-2126] to try API but i cannot use it, 
 always having the same error:  Uncaught SoapFault exception: 
 [soap:Server] [QuotaCheckError.ACCOUNT_INACTIVE @ ; trigger:'null']



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: V201309 Placement Performance Report - Managed Automtic

2013-11-11 Thread Danial Klimkin
Hello DK,


We are still looking into the best way to expose this attribute. I'll 
update this thread once we have it available.


-Danial, AdWords API Team.


On Thursday, October 31, 2013 3:03:02 PM UTC+4, okieb...@gmail.com wrote:

 Danial,
 I noticed Google made progress with fixing DSA ads reporting in another 
 thread on the forum.  Will a column be exposed for Automatic vs Managed 
 property?

 In this thread it was suggested that via the following logic, Automatic vs 
 Managed property can be defined.
   
  
 '--
' 10-25-13 Fix for Automatic vs Managed Placements, via use of the 
 Id/criterionID which will be empty
' or with 300 when it is an automatic placement vs a managed
   
  
 '--
 If sColumnNames(nCount).ToLower = criterionid Then
   If reader.GetAttribute(sColumnNames(nCount)) = -- Or 
 reader.GetAttribute(sColumnNames(nCount)) = 300 Then
 sData(nCount) = Automatic
   Else
 sData(nCount) = Managed
   End If
 End If

 Have a wonderful Halloween,
 DK

 On Monday, October 14, 2013 11:12:56 AM UTC-4, Danial Klimkin wrote:

 Hello DK,


 Thanks for bringing this up. I'll check if we can have a separate column 
 for this property.


 -Danial, AdWords API Team.


 On Monday, October 14, 2013 4:04:49 PM UTC+4, okieb...@gmail.com wrote:

 Happy Columbus Day Google API Team - Quick Question on V201309 and 
 PLACEMENT_PERFORMANCE_REPORT? 
 Looking for proper reportDefinition to obtain Managed vs Automatic 
 placements field - available via the Status column in UI and as 
 documented here: http://goo.gl/oJV9Te.  Do I need to continue to use 
 two reports: PLACEMENT_PERFORMANCE_REPORT for Managed placements and 
 AUTOMATIC_PLACEMENTS_PERFORMANCE_REPORT?

 DK

 On Friday, October 11, 2013 11:30:53 AM UTC-4, okieb...@gmail.com wrote:

 Reading the release notes for V201309, I was excited to see

 Placement Performance Report- Automatic placements are now included in 
 this report.

 I am now attempting to identify automatic versus managed placements 
 within this report.  So I started at the UI and used the tab “Display 
 Network” and then navigated to “Placements”.  Noted the column “Status” 
 provided me with the information and looked into the documentation for the 
 report 
 type http://goo.gl/AoJ0lQ and found the API field name.  So I 
 created the following report, and low and behold the API output gave me 
 the 
 values Paused, Deleted or Active for this and not the Managed, Automatic.

 What should my report definition look like to get column that 
 designates a managed vs. automatic placement, like the Status column in 
 the UI?


  reportDefinition

 selector

   fieldsDate/fields

   fieldsAdNetworkType1/fields

   fieldsStatus/fields

   fieldsCampaignName/fields

   fieldsAdGroupName/fields

   fieldsDestinationUrl/fields

   fieldsCriteriaDestinationUrl/fields

   fieldsPlacementUrl/fields

   fieldsDisplayName/fields

   fieldsCost/fields

   fieldsImpressions/fields

   fieldsClicks/fields

   fieldsConversions/fields

   fieldsViewThroughConversions/fields

   fieldsCtr/fields

   fieldsAverageCpc/fields

   fieldsConversionRate/fields

   fieldsCostPerConversion/fields

   fieldsConversionsManyPerClick/fields

   fieldsConversionValue/fields

 - dateRange

   min20131001/min

   max20131001/max

   /dateRange

   /selector

   reportNameCustom PLACEMENT_PERFORMANCE_REPORT/reportName

   reportTypePLACEMENT_PERFORMANCE_REPORT/reportType

   dateRangeTypeCUSTOM_DATE/dateRangeType

   downloadFormatXML/downloadFormat

   /reportDefinition



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Interested in Message Queue processing PHP example?

2013-11-11 Thread Danial Klimkin
Hi Evgeniy,


We are definitely open for code contributions for our libraries. Depending 
on the scope of the example, it can be included in the PHP lib or linked 
from our site as 3rd party reference.

I am CCing the PHP library maintainer (who also authored the talk 
discussed) for the discussion.


-Danial, AdWords API Team.


On Wednesday, October 30, 2013 10:47:26 PM UTC+4, Evgeniy Bogdanov wrote:

 Hi All.
 I was today on Hamburg Adwords API workshop, and Danial Klimkin told us 
 great idea: Message queue processing. 
 This simplifies everything: API rate limits, error processing.

 I do not know how about you, but for me this was like a sun in dark night, 
 I decide that all what I've done before is incorrect.

 So I decide to create scheme in PHP+RabbitMQ, which I can use in my 
 projects.
 Do you interested in such code to be shared with community.

 Regards,



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Get criterion info on APIError

2013-11-11 Thread Danial Klimkin
Hello,


The recommended flow is to store the set of the operations send for the job 
ID and to find the failed one by the index provided in the response.


-Danial, AdWords API Team.


On Wednesday, October 30, 2013 11:40:40 PM UTC+4, goingdev wrote:

 Is there a way to get the criterion info from an APIError?

 MutateJobService mutateJobService = 
 (MutateJobService)user.GetService(AdWordsService.v201309.MutateJobService);
 JobResult jobResult = mutateJobService.getResult(new 
 BulkMutateJobSelector { includeStats = true, jobIds = jobIDs }); 
 SimpleMutateResult results = (SimpleMutateResult)jobResult.Item;

 if (results.errors != null)
 {
 foreach (ApiError apiError in results.errors)
 {
 // get criterion info
 }
 }


 I'm finding it difficult to get detailed info on a specific error (which 
 is obviously important to have for logging purposes). Is this even 
 possible? (can't believe it's not).

 (I posted this on StackOverflow as well (
 http://stackoverflow.com/questions/19662873/google-adwords-api-get-criterion-info-on-apierror
 ).


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Couple questions about Report Definition.

2013-11-11 Thread Danial Klimkin
Hello Francisco,


1. Reporting calls are available on account level (not MCC) only. To pull 
data for all accounts under an MCC you need to pull report for each of them 
and join them locally.

2. As already suggested, please see:

  https://developers.google.com/adwords/api/docs/guides/reporting
  https://developers.google.com/adwords/api/docs/guides/reporting-concepts


-Danial, AdWords API Team.


On Thursday, October 31, 2013 12:41:37 AM UTC+4, Francisco Castillo wrote:

 First, *how can i pull data for all accounts and campaigns under an MCC? * If 
 i set the mcc as the account i get a CUSTOMER_SERVING_TYPE_REPORT_MISMATCH 
 error. 

 And second, *where can i find documentation about the other 
 reportdefinition parameters?* There's only docs on reporttype, but i 
 can't find anhything on daterangetype,  download format, or others 
 like includeZeroImpressions, which i have found in the examples. . 


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Pending API token review

2013-11-11 Thread Danial Klimkin
Hello,


This account is not an MCC account. What is the MCC account ID you've 
applied for the API for?


-Danial, AdWords API Team.


On Thursday, October 31, 2013 9:24:05 PM UTC+4, enol.i...@mediasq.com wrote:

 Hi, we've applied for a developer AdWords API token several weeks ago and 
 didn't received any response yet. How long should it take to receive the 
 evaluation? Our customer ID is 603-607-8328



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: AdWords Ad Details like % Served, Clicks etc... Which API call will return these information.

2013-11-11 Thread Danial Klimkin
Hello Bikram,


You need to use AdWords API Reporting to access this data. See:

  https://developers.google.com/adwords/api/docs/guides/reporting
  https://developers.google.com/adwords/api/docs/guides/reporting-concepts


-Danial, AdWords API Team.

On Friday, November 8, 2013 11:34:44 PM UTC+4, Bikram Bhuyan wrote:

 Hello,

 Could you please let me know which API call I should make to get the 
 following information for a particular AD?

 1. % Served.
 2. Clicks.
 3. Impression Indicator.
 4. Click Through Rate.
 5. Average Cost Per Click.
 6. Cost.
 7. Average Position.

 Just to give more details, all these information are shown in the AdWords 
 Ad Page in a grid format in the UI. I just wanted to fetch these 
 information by making API Calls.

 I will really appreciate if anyone know the details, if you could provide 
 some help.

 Thanks,
 Bikram.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Maximum MCC accounts I can create with Adwords API?

2013-11-11 Thread Danial Klimkin
Hello Steven,


Are you creating sub-MCCs or client accounts? Client accounts limit is 
somewhere in a range of thousands.


-Danial, AdWords API Team.


On Wednesday, November 6, 2013 9:57:30 AM UTC+4, Steven Goh wrote:

 Hi,

 How many accounts can I create programmatically with Adwords API? I seem 
 to have run into a limit with 10.

 I manage more than 10 clients, with more to come, how can I do this?

 Thanks!


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Adwords API для YouTube

2013-11-11 Thread Danial Klimkin
Антон, добрый день,


AdWords API не поддерживает в данное время кампании на YouTube (AdWords for 
Video).


-Даниил, команда AdWords API.



On Thursday, November 7, 2013 4:05:44 AM UTC+4, Антон Мошков wrote:

 Здравствуйте. Есть ли возможность, используя API Adwords, показывать 
 статистику просмотров рекламы видео на YouTube из моего аккаунта Adwords на 
 стороннем сайте?


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Test Account on Google Adword

2013-11-11 Thread Danial Klimkin
Hello Mueed,


Please use the developer token from you production (non-test) MCC.

Invalid grant is a separate issue, not related to the developer token. 
Please make sure you OAuth2 flow is correct and that you've granted 
permission to access the correct account.


-Danial, AdWords API Team.



On Wednesday, November 6, 2013 2:51:19 PM UTC+4, mueed hussain wrote:

 Hi,

 I am using Google Adwords APi to fetch the data on my web application. I 
 am using test account in which test account in red write on the top of my 
 account. But I did not see the developer token on this account and I don't 
 have a facility to create developer token on my test account. But in the 
 documentation of Google Adwords I read that developer token is must for 
 every request which we will send to adwords Api server. So please tell me 
 where would I get this developer token.

 On the other hand I tried to create a simple account on Adwords in which 
 is not a test account. Its a simple adword account and I got the Developer 
 token in that account. But its shows pending approval because I did not 
 pay. I have read in the documentation of Google Adwords that I can use the 
 developer token in my application as a test account and test account don't 
 need Approved Developer Token. I downloaded the php client library from 
 Google Adwords and set my variables in auth.ini file but when I run any of 
 the example. It says this type of error:  invalid_grant.

 Please tell me what is the right path and which way I should follow. I am 
 messing with this thing for almost 10 days. Any hrlp will be appreciable in 
 this case.

 Thanks
 Mueed Hussain


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: RateExceededError in TargetingIdeaService

2013-11-06 Thread Danial Klimkin
Hello,


TIS / TES services are not available for test accounts, as test accounts 
have no real data available. You need an approved token to use these 
services.


-Danial, AdWords API Team.


On Monday, November 4, 2013 10:38:53 PM UTC+4, slege...@gmail.com wrote:

 Both the GetKeywordIdeasExample and the GetPlacementIdeasExample keep 
 giving me this same problem.

 I'm using a test account with developer token from a production acount.

 I'm using PHP.



 Op donderdag 18 juli 2013 14:14:27 UTC+2 schreef Danial Klimkin:

 Hello,


 RateExceeded error depends on a number of parameters including our 
 systems load. There were no changes to the overall allowed rate.

 Please let us know if you still see this issue constantly over the next 
 week.


 -Danial, AdWords API Team.


 On Friday, July 12, 2013 1:10:49 PM UTC+4, dph...@nextag.com wrote:


 Since few days we are getting *RateExceededError* frequently with 
 following message and once it comes, it becomes sticky and keeps coming 
 with *retryAfterSeconds*=30. This is happening primarily with *
 TargetingIdeaService* (get request) and it is very frequent.  We 
 observed that this happens more when we run two tasks from different 
 servers which are calling this service and we are not sure why it will come 
 when we are restricting 5 total get request(total from all the servers) in 
 a minute. We usually run 5+ such tasks with 20 total calls/minutes earlier 
 with no error and now we have to stop all of them except one and that with 
 only 1/minute.

 *RateExceededError rateName=RequestsPerMinute, rateKey=developer_qps, 
 rateScope=DEVELOPER, retryAfterSeconds=30

 *We are using v201302 and most of the campaigns we have are enhanced 
 campaigns.


 Can you please tell us, if there is anything changed from your side for per 
 minute request and what is that value?



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://googleadsdeveloper.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
--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Retrieving DSA performance data aggregated at the ad level

2013-10-30 Thread Danial Klimkin
Hello Jaap-Jan Frans,


This issue should be resolved now and the ads must be returned. Please let 
us know if it is still not the case.


-Danial, AdWords API Team.


On Tuesday, October 29, 2013 5:19:43 PM UTC+4, fr...@bgenius.com wrote:

 Dear Danial,


 Any news on this issue?


 Thank you!

 Kind regards,
 Jaap-Jan Frans
 bGenius

 Op vrijdag 11 oktober 2013 17:35:18 UTC+2 schreef Danial Klimkin:

 Hello Jaap-Jan Frans,


 Thank you for bringing this up. Indeed, ad performance report should 
 include DSA, I'll follow up on it internally.


 -Danial, AdWords API Team.


 On Wednesday, October 9, 2013 1:20:02 PM UTC+4, fr...@bgenius.com wrote:

 Dear Adwords API support,


 Since the release of V201309 a few features went out of beta, Dynamic 
 Search Ads being one of them.

 We would like to implement better support for DSA for our users and are 
 investigating the possibilities now DSA API support is available for 
 everyone.

 A question we have is: What is the recommended way to retrieve DSA 
 performance data (stats and conversion data) aggregated at theAd level?

 We've researched two possible ways to achieve this:

 A) Retrieving it via the Ad performance report
 The Ad performance report offers the AdType field to filter on specific 
 ad types. The predicate 'DYNAMIC_SEARCH_AD' has been noted in the Ad 
 performance report type 
 definitionhttps://google-developers.appspot.com/adwords/api/docs/appendix/reports#ad
  table 
 for some time now, but using it would never return DSA data because DSA was 
 a Beta feature and the data was filtered out of the Ad Performance report 
 for non beta users, as Kevin Winter points out here 
 https://groups.google.com/d/msg/adwords-api/pr0h87cwnMk/8T21CjftUqEJin 
 response to a user who suspected the DSA results were filtered out of the 
 Ad Performance report.

 We expected that after the release of v201309 and DSA being out of beta, 
 using this predicate for the adtype field would now give us the dsa-ad 
 specific performance data in the ad performance report. Tests however have 
 shown that this is not the case.

 B) Retrieving it using the 'Keywordless Query' or the 'Keywordless 
 Category' report
 Another possibility we researched is using the Keywordless report types. 
 Problem is that neither report type is focussed on ad level, but aggregate 
 data on category level and search term level. They contain no fields that 
 we can use to directly match performance data to a specific DSA ad (like an 
 Ad ID field)



 Is itexpected behaviour on the API's end that the Ad Performance report 
 still has DSA data filtered out now DSA is out of beta? In that case it 
 might be good the remove 'DYNAMIC_SEARCH_AD' as a predicate from the report 
 type definition, as it can confuse API users. If it is not the case will 
 the ad performance report include the DSA Ad data in the near future? 

 What is your recommended way of retrieving DSA performance data 
 aggregated on ad level?



 Kind regards,
 Jaap-Jan Frans
 bGenius





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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Retrieving DSA performance data aggregated at the ad level

2013-10-30 Thread Danial Klimkin
Yes, I am actually in the event right now. ;) 


-Danial from the back row.



On Wednesday, October 30, 2013 1:47:36 PM UTC+4, fr...@bgenius.com wrote:

 Great,


 the audience at the adwords api workshop in Hamburg here today just 
 confirmed this too :-)

 kind regards ,

 Jaap-Jan

 Op woensdag 30 oktober 2013 10:33:08 UTC+1 schreef Danial Klimkin:

 Hello Jaap-Jan Frans,


 This issue should be resolved now and the ads must be returned. Please 
 let us know if it is still not the case.


 -Danial, AdWords API Team.


 On Tuesday, October 29, 2013 5:19:43 PM UTC+4, fr...@bgenius.com wrote:

 Dear Danial,


 Any news on this issue?


 Thank you!

 Kind regards,
 Jaap-Jan Frans
 bGenius

 Op vrijdag 11 oktober 2013 17:35:18 UTC+2 schreef Danial Klimkin:

 Hello Jaap-Jan Frans,


 Thank you for bringing this up. Indeed, ad performance report should 
 include DSA, I'll follow up on it internally.


 -Danial, AdWords API Team.


 On Wednesday, October 9, 2013 1:20:02 PM UTC+4, fr...@bgenius.comwrote:

 Dear Adwords API support,


 Since the release of V201309 a few features went out of beta, Dynamic 
 Search Ads being one of them.

 We would like to implement better support for DSA for our users and 
 are investigating the possibilities now DSA API support is available for 
 everyone.

 A question we have is: What is the recommended way to retrieve DSA 
 performance data (stats and conversion data) aggregated at theAd level?

 We've researched two possible ways to achieve this:

 A) Retrieving it via the Ad performance report
 The Ad performance report offers the AdType field to filter on 
 specific ad types. The predicate 'DYNAMIC_SEARCH_AD' has been noted in 
 the Ad 
 performance report type 
 definitionhttps://google-developers.appspot.com/adwords/api/docs/appendix/reports#ad
  table 
 for some time now, but using it would never return DSA data because DSA 
 was 
 a Beta feature and the data was filtered out of the Ad Performance report 
 for non beta users, as Kevin Winter points out here 
 https://groups.google.com/d/msg/adwords-api/pr0h87cwnMk/8T21CjftUqEJin 
 response to a user who suspected the DSA results were filtered out of the 
 Ad Performance report.

 We expected that after the release of v201309 and DSA being out of 
 beta, using this predicate for the adtype field would now give us the 
 dsa-ad specific performance data in the ad performance report. Tests 
 however have shown that this is not the case.

 B) Retrieving it using the 'Keywordless Query' or the 'Keywordless 
 Category' report
 Another possibility we researched is using the Keywordless report 
 types. Problem is that neither report type is focussed on ad level, but 
 aggregate data on category level and search term level. They contain no 
 fields that we can use to directly match performance data to a specific 
 DSA 
 ad (like an Ad ID field)



 Is itexpected behaviour on the API's end that the Ad Performance 
 report still has DSA data filtered out now DSA is out of beta? In that 
 case 
 it might be good the remove 'DYNAMIC_SEARCH_AD' as a predicate from the 
 report type definition, as it can confuse API users. If it is not the 
 case 
 will the ad performance report include the DSA Ad data in the near 
 future? 

 What is your recommended way of retrieving DSA performance data 
 aggregated on ad level?



 Kind regards,
 Jaap-Jan Frans
 bGenius





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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Get remaining balance for an account

2013-10-30 Thread Danial Klimkin
Hello Ondrej,


We'll track this as a feature request, unfortunately I can't provide any 
more details.


-Danial, AdWords API Team.


On Tuesday, October 29, 2013 11:25:46 PM UTC+4, Ondřej Bartas wrote:

 Hello Danial,

 do you have any reason to not add balance of account to api?

 If you have hundreds of accounts for hundreds of clients and you would 
 like to send alert email to client about balance, there is no way to do it 
 :(

 Ondrej

 On Wednesday, July 17, 2013 10:56:27 AM UTC+2, Danial Klimkin wrote:

 Hi Dmitry,


 We currently don't plan to include billing information or remaining 
 budgets in the API.


 -Danial, AdWords API Team.


 On Tuesday, July 16, 2013 6:38:42 PM UTC+4, Дмитрий Пискарёв wrote:

 Thanks. Will this feature be in yours to-do list?

 пятница, 12 июля 2013 г., 14:24:42 UTC+4 пользователь Дмитрий Пискарёв 
 написал:

 Hello,

 is there a way to get remaining budget for an account ? I googled 
 several times, but found only several 2011 posts with short answer about 
 the inability to do so.



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to get campaign and advance campaign type using API

2013-10-30 Thread Danial Klimkin
Hello,


The campaign type concept is currently UI-only as it only limits the 
options visible in the UI. It is not available in the API.


-Danial, AdWords API Team.


On Tuesday, October 29, 2013 3:23:13 PM UTC+4, techpoi...@gmail.com wrote:

 Hi,

 How the campaign type and advance campaign type can be fetched through API?

 Using campaign service we can fetch the network settings but not able to 
 get campaign advance types as All Features, Mobile Apps, Remarketing 
 etc.


 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: CampaignService returns

2013-10-23 Thread Danial Klimkin
Hello All,


This issue should be resolved now. Please let us know if you still see the 
error.


-Danial, AdWords API Team.


On Friday, October 18, 2013 5:48:44 PM UTC+4, GrueneOrchidee wrote:

 Thanks for the update!


 Am Freitag, 18. Oktober 2013 11:36:18 UTC+2 schrieb Danial Klimkin:

 Hello Hans,


 The fix is ready and in testing now. I'll update this thread once we have 
 it live.


 -Danial, AdWords API Team.


 On Thursday, October 17, 2013 8:29:07 PM UTC+4, HK wrote:

 Hi, guys

 Any ideas when this will be addressed? We have a release sitting waiting 
 to go out with support for v201309 and are trying to plan when we can 
 expect to be able to push it out.

 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Is there a less intrusive way to add query string parameters to ad destination URLs?

2013-10-21 Thread Danial Klimkin
Hello Hans,


There is no easy way to update URLs and this is a product decision (not 
specific to the API). You can use ValueTrack to have some dynamic 
parameters:

  https://support.google.com/adwords/answer/2375447?hl=en

One of the options can be to create new ads first and wait for them to be 
reviewed before deleting the old ads. This will not solve the stats issue 
though.


-Danial, AdWords API Team.


On Thursday, October 17, 2013 8:43:59 PM UTC+4, HK wrote:

 Hi, guys

 We are managing close to a million ads and every so often, there's a need 
 to update the ad destination URLs, for example by adding the {device} value 
 track parameter. As you know, ads can't be modified except for their 
 status, so we end up disrupting customers' ads and performance by 
 recreating the ads. Recreating the ads cause some of them to not 
 immediately get approved due to already resolved trademark issues etc 
 essentially taking the ads offline for a few days which is obviously not 
 good. Also other apps outside the control of our system may depend on using 
 the existing AdId's which now change. All in all, a very bad situation if 
 you are using ad level destination URLs. (Bing Ads does allow you to update 
 ads without having to delete and recreate them).

 I'm hoping I have missed this as an already existing feature, but if not, 
 the ask is that Google considers making available a feature where you can 
 request AdWords to add custom query string parameters onto the URLs at 
 serving time. Ideally, this could be set at the account level, campaign 
 level and ad group level.

 Please let me know if anything like this already exists or if this is 
 something that could be considered as a future enhancement. I have a 
 feeling I'm not the only one that would find this very useful :-)

 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: What effect does an exemption request have when recreating an ad with a new destination URL?

2013-10-21 Thread Danial Klimkin
Hello Hans,


1. All ads are reviewed individually.

2. No. This only allows to avoid getting errors for the policies that are 
checked automatically.


-Danial, AdWords API Team.


On Friday, October 18, 2013 1:35:14 AM UTC+4, HK wrote:

 Hi,

 Trying to minimize the downtime for ads when changing an ad's destination 
 URL, I have a couple questions I was hoping to get answered:

1. If you have an active and approved ad and you then ONLY change its 
destination URL, let's say to include a new query string parameter, does 
that ad get on the fast track to be approved or does it go through the 
 same 
process as any other new ad? In other words, does Google notice that only 
the URL was changed and hence doesn't keep it in a disapproved state for 
very long, hopefully not at all?
2. When submitting the above new ad, using the process of first 
submitting the ad using validateOnly = true followed by including an 
exemption request when doing the real submission (for those getting a 
policy violation only), does this actually make a difference to how 
 quickly 
the ad is approved? As mentioned in a different thread, I'm trying to 
minimize the impact of updating ad destination URLs for ads so that our 
merchants (and Google :-)) can continue to make money without interruption.

 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Re. AdWords - ManualCPCAdGroupBids

2013-10-21 Thread Danial Klimkin
Hello,


Please see biddingStrategyConfiguration field of BiddableAdGroupCriterion:

  
https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupCriterionService.BiddableAdGroupCriterion

and ManualCpcBiddingScheme:

  
https://developers.google.com/adwords/api/docs/reference/v201309/BiddingStrategyService.ManualCpcBiddingScheme


-Danial, AdWords API Team.


On Thursday, October 17, 2013 1:39:25 PM UTC+4, mars...@gmail.com wrote:

 We have used ManualCPCAdGroupBids in v201209. What is the alternate in 
 v201306.


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: [QuotaCheckError.INCOMPLETE_SIGNUP @ ; trigger:'']

2013-10-21 Thread Danial Klimkin
Hello,


The MCC account with the developer token does not have Terms and Conditions 
accepted. Please set up the billing and review / accept TC to use the API.


-Danial, AdWords API Team.


On Thursday, October 17, 2013 3:02:37 PM UTC+4, Viking Xie wrote:

 Hi,

 We've been getting this error for a couple of days. MCC ID:681-400-8614 
 test account customer id: 277-894-4771

 Request XML:

 ?xml version=1.0 encoding=UTF-8?
 SOAP-ENV:Envelope xmlns:SOAP-ENV=
 http://schemas.xmlsoap.org/soap/envelope/; xmlns:ns1=
 https://adwords.google.com/api/adwords/cm/v201306;
   SOAP-ENV:Header
 ns1:RequestHeader
   ns1:clientCustomerId277-894-4771/ns1:clientCustomerId
   ns1:developerTokenxxx/ns1:developerToken
   ns1:userAgentTest (AwApi-PHP/4.6.1, Common-PHP/5.0.0, 
 PHP/5.4.0beta2-dev)/ns1:userAgent
 /ns1:RequestHeader
   /SOAP-ENV:Header
   SOAP-ENV:Body
 ns1:get
   ns1:serviceSelector
 ns1:fieldsId/ns1:fields
 ns1:fieldsName/ns1:fields
 ns1:ordering
   ns1:fieldName/ns1:field
   ns1:sortOrderASCENDING/ns1:sortOrder
 /ns1:ordering
 ns1:paging
   ns1:startIndex0/ns1:startIndex
   ns1:numberResults500/ns1:numberResults
 /ns1:paging
   /ns1:serviceSelector
 /ns1:get
   /SOAP-ENV:Body
 /SOAP-ENV:Envelope

 Response XML:
 soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
 soap:Header
 ResponseHeader xmlns=
 https://adwords.google.com/api/adwords/cm/v201306;
 requestId0004e8edb7c4f8780a42c22a30ee/requestId
 serviceNameCampaignService/serviceName
 methodNameget/methodName
 operations0/operations
 responseTime91/responseTime
 /ResponseHeader
 /soap:Header
 soap:Body
 soap:Fault
 faultcodesoap:Server/faultcode
 faultstring[QuotaCheckError.INCOMPLETE_SIGNUP @ ; 
 trigger:'lt;nullgt;']/faultstring
 detail
 ApiExceptionFault xmlns=
 https://adwords.google.com/api/adwords/cm/v201306;
 message[QuotaCheckError.INCOMPLETE_SIGNUP @ ; 
 trigger:'lt;nullgt;']/message
 
 ApplicationException.TypeApiException/ApplicationException.Type
 errors xmlns:xsi=
 http://www.w3.org/2001/XMLSchema-instance; xsi:type=QuotaCheckError
 fieldPath/fieldPath
 triggerlt;nullgt;/trigger
 
 errorStringQuotaCheckError.INCOMPLETE_SIGNUP/errorString
 ApiError.TypeQuotaCheckError/ApiError.Type
 reasonINCOMPLETE_SIGNUP/reason
 /errors
 /ApiExceptionFault
 /detail
 /soap:Fault
 /soap:Body
 /soap:Envelope

 Please help, we need this to be solved 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: xsd schema for reports in v201309

2013-10-21 Thread Danial Klimkin
Hello,


Please see:

  https:
//adwords.google.com/api/adwords/reportdownload/v201309/reportDefinition.xsd


-Danial, AdWords API Team.


On Saturday, October 19, 2013 3:49:05 PM UTC+4, gshoihet wrote:

 hello,
 I try to parse xml response from 
 KEYWORDS_PERFORMANCE_REPORT , but don't have any schema that describe the 
 xml.
 Please advice
 Thanks Grisha











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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: PyXML is dead project!!

2013-10-21 Thread Danial Klimkin
Hi Wendy,


It looks like you are missing a working compiler which is required for 
PyXML native extensions. Please see:

  http://stackoverflow.com/questions/2817869/error-unable-to-find-vcvarsall-bat


-Danial, AdWords API Team.


On Thursday, October 17, 2013 8:08:53 PM UTC+4, Wendy Zhou wrote:

 I am stuck at PyXML as I Googled PyXML is a dead project. Is there any way 
 substitute this?


 https://lh3.googleusercontent.com/-Vej1kIDbcag/UmALE53jh6I/CBk/3v_vKz6HtyQ/s1600/Untitled+picture.png
 any help?  as I run easy_install PyXML it popup this ' Unable to find 
 vcvarsall.bat'!!




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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: CampaignService returns

2013-10-18 Thread Danial Klimkin
Hello Hans,


The fix is ready and in testing now. I'll update this thread once we have 
it live.


-Danial, AdWords API Team.


On Thursday, October 17, 2013 8:29:07 PM UTC+4, HK wrote:

 Hi, guys

 Any ideas when this will be addressed? We have a release sitting waiting 
 to go out with support for v201309 and are trying to plan when we can 
 expect to be able to push it out.

 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: ForwardCompatibilityMap missing from response campaignservice

2013-10-18 Thread Danial Klimkin
Hello Jeff,


Thank you for the feedback.

I will follow up internally with the teams to improve the way we make 
changes to the FCMaps.


-Danial, AdWords API Team.


On Thursday, October 17, 2013 11:14:23 PM UTC+4, Jeff Theroux wrote:

 Danial, it is well documented and understood that new attributes could be 
 added to the FCM between API versions. I think the issue here is it was 
 never made clear that the FCM would change across multiple versions 
 (v201306, v201302) of the API by removing attributes from older versions of 
 the API where the functionality was not exposed. The API doc states:

 A note of caution: Keys exposed in forward compatibility maps will 
 become real attributes of the objects in a future API release; at that 
 point, the API will stop honoring these specific keys in preference of the 
 equivalent attributes.

 keys are exposed/accepted only on API versions that don’t have the 
 functionality already exposed.

 That, to me, implies that keys in the FCM will stick around in old API 
 versions (and not be removed) but that new keys can be added at any time to 
 old versions of the API. If the FCM can change (announced or unannounced) 
 across multiple versions the documentation needs to be updated to more 
 explicitly document that behavior. If it's documented that keys can be 
 removed, that will allow developers to put appropriate fallbacks in place

 The migration guide / v201309 announcement was posted on the blog on 
 October 3rd and the suggested bid modifier was removed from v201302 and 
 v201306 on October 15th. We were fortunate to be able to push a fix on the 
 same day we noticed it, but seven business days might not allow enough time 
 for all API clients to code and deploy a fix to all production servers. 

 My request is the same as Jaap-Jan Frans, to post upcoming 
 backwards-incompatible changes to the mailing list and blog, but also to 
 treat backwards-incompatible changes similar to new API releases and give 
 us more advance notice so we can better plan for it, and do the work at a 
 time that is convenient for us.

 Thanks,

 Jeff




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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: error 400 bad request client unauthorized

2013-10-18 Thread Danial Klimkin
Hello Taras,


Are you able to retrieve an access token? Refresh token is the one you need 
to store for long-term, while you need an access token for the actual 
request.

In this case, please send us the reporting request you are sending, 
including HTTP headers. Make sure to replace your access and developer 
tokens with *** though.


-Danial, AdWords API Team.


On Thursday, October 17, 2013 5:13:30 PM UTC+4, Taras wrote:

 But how can i get authorization code?
 After that i can call FetchAccessAndRefreshTokens(authorization_code) and 
 all would be OK.
 But I want to get it programmatically.
 I have oauth client id,client secret,refresh token.
 And want to start programm,which would authorize automatically 
 without user intervention

 How can i do this?

 On Thursday, 17 October 2013 12:22:16 UTC+3, Danial Klimkin wrote:

 Hi Jooble,


 Please check the data to be a valid POST request. It looks like it may be 
 generating a string like:

 **client_id=[...]client_secret=[...]refresh_token=*[...]grant*
 _type=[...]

 note leading  and missing  before grant_type.

 We also recommend using one of our client libraries instead of 
 implementing the flow yourself:

   https://developers.google.com/adwords/api/docs/clientlibraries


 -Danial, AdWords API Team.


 On Tuesday, October 15, 2013 1:31:02 PM UTC+4, Jooble wrote:

 string grantType = access_token;
 string client_id = XX;
 string refresh_token = XX;
 string url = https://accounts.google.com/o/oauth2/token;;
 string client_secret = XX;
 HttpWebResponse response = null;
 try
 {
 // Create the data to send
 StringBuilder data = new StringBuilder();
 data.Append(client_id= + Uri.EscapeDataString(client_id));
 data.Append(client_secret= + Uri.EscapeDataString(client_secret));
 data.Append(refresh_token= + Uri.EscapeDataString(refresh_token));
 data.Append(grant_type= + Uri.EscapeDataString(grantType));

 // Create a byte array of the data to be sent
 byte[] byteArray = Encoding.UTF8.GetBytes(data.ToString());

 // Setup the Request
 HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
 request.Method = POST;
 request.ContentType = application/x-www-form-urlencoded;
 request.ContentLength = byteArray.Length;

 // Write data
 Stream postStream = request.GetRequestStream();
 postStream.Write(byteArray, 0, byteArray.Length);
 postStream.Close();

 // Send Request  Get Response
 response = (HttpWebResponse)request.GetResponse();

 using (StreamReader reader = new 
 StreamReader(response.GetResponseStream()))
 {
 // Get the Response Stream
 string json = reader.ReadLine();
 Console.WriteLine(json);
 }
 }
 catch (WebException e)
 {
 // This exception will be raised if the server didn't return 200 - OK
 // Retrieve more information about the error
 if (e.Response != null)
 {
 using (HttpWebResponse err = (HttpWebResponse)e.Response)
 {
 Console.WriteLine(The server returned '{0}' with the status code '{1} 
 ({2:d})'.,
   err.StatusDescription, err.StatusCode, err.StatusCode);
 }
 }
 }
 finally
 {
 if (response != null) { response.Close(); }
 }



 I get this error on 
 line response = (HttpWebResponse)request.GetResponse();

 I've changed my client id,and so on for XX

 I've just get approved developer token and try to download report 
 through API and always get error


 System.Net.WebException: The remote server returned an error: (400) Bad 
 Request.
at System.Net.HttpWebRequest.GetResponse()
at WindowsFormsApplication1.Form1.DoAuth2Authorization(AdsUser user) 
 in D:\test\WindowsFormsApplication1\Form1.cs:line 342}



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Ads device preference value

2013-10-18 Thread Danial Klimkin
Hello,


It is HighEndMobile from the Platforms reference you've linked (30001).


-Danial, AdWords API Team.


On Thursday, October 17, 2013 1:48:08 PM UTC+4, GrueneOrchidee wrote:

 Thank you for your answer. 
 Maybe I asked the question not exact enough. I want to know which ids I 
 can set as device preferences, e.g. 3 or 1 or something like this, when 
 I add a new ad. Is there somewhere an overview where I can find all 
 possible ids?


 Am Donnerstag, 17. Oktober 2013 11:30:13 UTC+2 schrieb Danial Klimkin:

 Hello,


 Please see this article for an overview:

   https://support.google.com/adwords/answer/2909484


 -Danial, AdWords API Team.


 On Tuesday, October 15, 2013 3:54:24 PM UTC+4, GrueneOrchidee wrote:

 What values can be set as device preferences, when I add a new adGroup 
 ad, e.g. a new textAd? I found only values for the platform targeting:
 https://developers.google.com/adwords/api/docs/appendix/platforms
 Are this the same values that can be set?



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: AuthorizationError.USER_PERMISSION_DENIED Test MCC using a Production Developer Key

2013-10-18 Thread Danial Klimkin
Hello Mike,


Sorry but I have to double-check this. The cloud console user is not 
relevant here, the important one is the user you was logged in when you did 
OAuth authorization flow. Can you please log off any Google account, and 
re-try the OAuth flow making sure to log in with the correct user?


-Danial, AdWords API Team.


On Thursday, October 17, 2013 6:24:47 PM UTC+4, postm...@aardvarkads.com 
wrote:

 Danial,

 Thanks for your reply.The test mcc and cloud console are both the same 
 user (***@aardvarkads.com develo...@aardvarkads.com). So, the user has 
 rights in test mcc as it is the default user (in adwords test mcc UI: My 
 Account-Account Access, right?).

 At any rate, I tried the same code with a different test mcc and cloud 
 console account and everything works. The only difference I can see is this 
 other account was setup a few days before 
 ***@aardvarkads.comdevelo...@aardvarkads.com. 
 Is there a setup delay of some sort?

 Thanks
 Mike

 On Wednesday, October 16, 2013 8:59:52 AM UTC-4, Danial Klimkin wrote:

 Hello Mike,


 It looks like the OAuth2 credentials you use don't have access to the 
 test MCC account. Make sure to add the login you are using to the test MCC 
 account with Standard or Administrative rights (via the user interface).


 -Danial, AdWords API Team.


 On Thursday, October 10, 2013 2:19:42 PM UTC+4, deve...@aardvarkads.comwrote:

 Hi,

 I am trying to make calls using an authenticated (Oauth2 client) mcc 
 test account (760-716-1008) . I am using the pending developer token from a 
 production mcc account (532-179-4410).


 I attached the log files.

 Please help,

 Thanks
 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: OAuth2 response - Server Port configuration

2013-10-17 Thread Danial Klimkin
Hello Alan,


Yes, looks like the DNS server returns you an IPv6 address which you can't 
reach. You need to make sure your application can connect to port 443 of 
the Google servers.


-Danial, AdWords API Team.


On Wednesday, October 16, 2013 5:31:15 PM UTC+4, Alan Coleman wrote:

 Thanks again Danial,

 Just to confirm. You think that my server is currently trying to connect 
 to Google's via IPv6 and that instead I should try IPv4 ?

 Many thanks.

 On Wednesday, October 16, 2013 12:48:03 PM UTC, Danial Klimkin wrote:

 Hello Alan,


 This is a server-side setup, unfortunately I can not provide any more 
 details as it completely depends on the platform / OS you are using.


 -Danial, AdWords API Team.


 On Wednesday, October 16, 2013 12:58:52 AM UTC+4, Alan Coleman wrote:

 Hi Danial,

 As always, thanks for getting back to me. Can you give me a hint on 
 where I'm going to disable IPv6? Am I going to make changes to my code or 
 is it a server side issue?

 Thanks again.

 On Friday, October 11, 2013 3:39:05 PM UTC+1, Danial Klimkin wrote:

 Hello Alan,


 It looks like you are going over IPv6. Can you try disabling it and 
 going over IPv4 address?


 -Danial, AdWords API Team.


 On Thursday, October 10, 2013 7:54:45 PM UTC+4, Alan Coleman wrote:

 Hi Danial,

 I've deleted the other post. The issue in this one is the focus now.

 Many thanks

 On Thursday, October 10, 2013 9:57:18 AM UTC, Danial Klimkin wrote:

 Hi Alan,


 I see two threads about this issue on the forum from you. From the 
 first one it looks like the issue was resolved. Please let us know if 
 you 
 still have questions on this one.


 -Danial, AdWords API Team.


 On Tuesday, October 8, 2013 1:33:06 AM UTC+4, Alan Coleman wrote:

 Hello everyone,

 I'm having some connection issues between my AdWords app on Bluehost 
 hosting and Google's servers.

 After the user grants access and the authorization code is returned 
 back to my server I'm receiving the following error.

 *Failed to connect to 2607:f8b0:400e:c02::54: Network is unreachable
 *
 *
 *
 Bluehost support has confirmed my suspicions that a port *may* need 
 opening to accept the response.

 So my question is, what port will the response be returning to? Is 
 it defined as part of the API or arbitrary depending on account 
 settings?

 Many 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: What should I set into dveloperToken(v201302~09)

2013-10-17 Thread Danial Klimkin
Hello,


You still need a developer token and it has to be the one from non-test MCC 
account. It doesn't have to be approved yet (can be in pending state).

Please also make sure to set up the billing for this MCC account and to 
review / accept Terms and Conditions.


-Danial, AdWords API Team.


On Tuesday, October 15, 2013 3:19:04 PM UTC+4, adword...@gmail.com wrote:

 Hi.
 I have a problem requesting API as a test account.
 I set following params in auth.ini, but does't work.
 ---
 developerToken = x
 userAgent = 
 email = x...@.xxx
 password = x
 ---
 Developer token is not accepted yet.
 I heard test account does't need developerToken, but my program stops with 
 error message An error has occurred: [QuotaCheckError.ACCOUNT_INACTIVE @ 
 ; trigger:''].
 What should I set into this param?

 Please give me an advice.





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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: error 400 bad request client unauthorized

2013-10-17 Thread Danial Klimkin
Hi Jooble,


Please check the data to be a valid POST request. It looks like it may be 
generating a string like:

**client_id=[...]client_secret=[...]refresh_token=*[...]grant*
_type=[...]

note leading  and missing  before grant_type.

We also recommend using one of our client libraries instead of implementing 
the flow yourself:

  https://developers.google.com/adwords/api/docs/clientlibraries


-Danial, AdWords API Team.


On Tuesday, October 15, 2013 1:31:02 PM UTC+4, Jooble wrote:

 string grantType = access_token;
 string client_id = XX;
 string refresh_token = XX;
 string url = https://accounts.google.com/o/oauth2/token;;
 string client_secret = XX;
 HttpWebResponse response = null;
 try
 {
 // Create the data to send
 StringBuilder data = new StringBuilder();
 data.Append(client_id= + Uri.EscapeDataString(client_id));
 data.Append(client_secret= + Uri.EscapeDataString(client_secret));
 data.Append(refresh_token= + Uri.EscapeDataString(refresh_token));
 data.Append(grant_type= + Uri.EscapeDataString(grantType));

 // Create a byte array of the data to be sent
 byte[] byteArray = Encoding.UTF8.GetBytes(data.ToString());

 // Setup the Request
 HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
 request.Method = POST;
 request.ContentType = application/x-www-form-urlencoded;
 request.ContentLength = byteArray.Length;

 // Write data
 Stream postStream = request.GetRequestStream();
 postStream.Write(byteArray, 0, byteArray.Length);
 postStream.Close();

 // Send Request  Get Response
 response = (HttpWebResponse)request.GetResponse();

 using (StreamReader reader = new 
 StreamReader(response.GetResponseStream()))
 {
 // Get the Response Stream
 string json = reader.ReadLine();
 Console.WriteLine(json);
 }
 }
 catch (WebException e)
 {
 // This exception will be raised if the server didn't return 200 - OK
 // Retrieve more information about the error
 if (e.Response != null)
 {
 using (HttpWebResponse err = (HttpWebResponse)e.Response)
 {
 Console.WriteLine(The server returned '{0}' with the status code '{1} 
 ({2:d})'.,
   err.StatusDescription, err.StatusCode, err.StatusCode);
 }
 }
 }
 finally
 {
 if (response != null) { response.Close(); }
 }



 I get this error on 
 line response = (HttpWebResponse)request.GetResponse();

 I've changed my client id,and so on for XX

 I've just get approved developer token and try to download report through 
 API and always get error


 System.Net.WebException: The remote server returned an error: (400) Bad 
 Request.
at System.Net.HttpWebRequest.GetResponse()
at WindowsFormsApplication1.Form1.DoAuth2Authorization(AdsUser user) in 
 D:\test\WindowsFormsApplication1\Form1.cs:line 342}



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Ads device preference value

2013-10-17 Thread Danial Klimkin
Hello,


Please see this article for an overview:

  https://support.google.com/adwords/answer/2909484


-Danial, AdWords API Team.


On Tuesday, October 15, 2013 3:54:24 PM UTC+4, GrueneOrchidee wrote:

 What values can be set as device preferences, when I add a new adGroup ad, 
 e.g. a new textAd? I found only values for the platform targeting:
 https://developers.google.com/adwords/api/docs/appendix/platforms
 Are this the same values that can be set?


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: OAuth2 response - Server Port configuration

2013-10-16 Thread Danial Klimkin
Hello Alan,


This is a server-side setup, unfortunately I can not provide any more 
details as it completely depends on the platform / OS you are using.


-Danial, AdWords API Team.


On Wednesday, October 16, 2013 12:58:52 AM UTC+4, Alan Coleman wrote:

 Hi Danial,

 As always, thanks for getting back to me. Can you give me a hint on where 
 I'm going to disable IPv6? Am I going to make changes to my code or is it a 
 server side issue?

 Thanks again.

 On Friday, October 11, 2013 3:39:05 PM UTC+1, Danial Klimkin wrote:

 Hello Alan,


 It looks like you are going over IPv6. Can you try disabling it and going 
 over IPv4 address?


 -Danial, AdWords API Team.


 On Thursday, October 10, 2013 7:54:45 PM UTC+4, Alan Coleman wrote:

 Hi Danial,

 I've deleted the other post. The issue in this one is the focus now.

 Many thanks

 On Thursday, October 10, 2013 9:57:18 AM UTC, Danial Klimkin wrote:

 Hi Alan,


 I see two threads about this issue on the forum from you. From the 
 first one it looks like the issue was resolved. Please let us know if you 
 still have questions on this one.


 -Danial, AdWords API Team.


 On Tuesday, October 8, 2013 1:33:06 AM UTC+4, Alan Coleman wrote:

 Hello everyone,

 I'm having some connection issues between my AdWords app on Bluehost 
 hosting and Google's servers.

 After the user grants access and the authorization code is returned 
 back to my server I'm receiving the following error.

 *Failed to connect to 2607:f8b0:400e:c02::54: Network is unreachable*
 *
 *
 Bluehost support has confirmed my suspicions that a port *may* need 
 opening to accept the response.

 So my question is, what port will the response be returning to? Is it 
 defined as part of the API or arbitrary depending on account settings?

 Many 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: ForwardCompatibilityMap missing from response campaignservice

2013-10-16 Thread Danial Klimkin
Hello Jaap-Jan,


This property was only available as part of ForwardCompatibilityMap. This 
is the part of the API that provides certain functionality temporarily and 
can be updated in between releases.

The change was announced in the migration guide:

  https://developers.google.com/adwords/api/docs/guides/migration-v201309


-Danial, AdWords API Team.



On Wednesday, October 16, 2013 10:42:04 AM UTC+4, fr...@bgenius.com wrote:

 Hi Danial,

 Thank you for your reply. 

 It would have been nice to know this change was coming.
 Did we perhaps miss an announcement that it was to be removed?


 Kind regards,

 Jaap-Jan


 Op dinsdag 15 oktober 2013 15:18:04 UTC+2 schreef Danial Klimkin:

 Hello Jaap-Jan Frans,


 SuggestedBidModifier was a temporary field available for the period of 
 Enhanced Campaigns migration only. It is no longer available in the UI and 
 should not be returned via the API anymore.


 -Danial, AdWords API Team.


 On Monday, October 14, 2013 11:41:05 AM UTC+4, fr...@bgenius.com wrote:

 Dear Adwords Support Team,


 We use the ForwardCompatibilityMap of the Campaign object to retrieve 
 suggested mobile bid adjustments.

 This weekend while downloading campaigns of clients accounts we noticed 
 that sometimes the forward compatibility map is missing from the response 
 we get from the API.

 When we investigated it further we noticed that the map randomly is 
 included or excluded in the response 

 Here are two request ID's to retrieve the exact same campaigns:
 0004e8ade3ee40980ae5aac72dbd   
 0004e8ae0e301f980ae50e881430

 The requests both have the same fields etc. (see the attachments)

 In the response soap message of the first request ID the map is missing. 
 The response of the second request contains a map for each campaign.
 The responses are also included as attachments.



 Can you look into this matter? Thank you!


 Kind regards,

 Jaap-Jan Frans 
 bGenius



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: My test account returns AuthenticationError.NOT_ADS_USER Exception

2013-10-16 Thread Danial Klimkin
Hello Julius,


It sounds like you can use the offline flow. You will need some AdWords 
account to run queries against anyway.


-Danial, AdWords API Team.


On Tuesday, October 15, 2013 7:00:29 PM UTC+4, Julius Markūnas wrote:

 Hello Danial,


 The problem is that I need to access adwords-api 
 (TrafficEstimatorServicehttps://developers.google.com/adwords/api/docs/reference/v201309/TrafficEstimatorService
  precisely), and I don't want to ask for user permissions or credentials, 
 since some of our users might not have google account. Which approach would 
 be possible in this case? 


 Thanks!
 Julius

 On Monday, October 14, 2013 6:19:26 PM UTC+3, Danial Klimkin wrote:

 Hello Julius,


 It looks like you are trying to use Service Accounts / OAuth2 JWT flow. 
 This flow is only available if you have a Google Apps account and is rarely 
 used. It only makes sense to use it if you need user impersonation (your 
 app needs to act as different users).

 I suggest using offline or web flow instead.


 -Danial, AdWords API Team.


 On Monday, October 14, 2013 6:48:30 PM UTC+4, Julius Markūnas wrote:

 Hello,

 I'm having the same problem. Client customer ID and developer_token are 
 taken from real account, which is pending for approval, but I still get 
 AuthenticationError.NOT_ADS_USER error. Test account is 
 tes...@innerballoons.com. Can you check what am I doing wrong?

 My config:

  :service = {
 :environment = :PRODUCTION
   },

   :library = {
 :log_level = DEBUG
   },

   :authentication = {
 method: OAUTH2_JWT,
 oauth2_issuer: '#2###@developer.gserviceaccount.com',
 oauth2_secret: 'secret',
 oauth2_keyfile: 'adwords-key.p12',
 developer_token: '###,
 client_customer_id: '150-###-'

   }



 Julius



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: AuthorizationError.USER_PERMISSION_DENIED Test MCC using a Production Developer Key

2013-10-16 Thread Danial Klimkin
Hello Mike,


It looks like the OAuth2 credentials you use don't have access to the test 
MCC account. Make sure to add the login you are using to the test MCC 
account with Standard or Administrative rights (via the user interface).


-Danial, AdWords API Team.


On Thursday, October 10, 2013 2:19:42 PM UTC+4, deve...@aardvarkads.com 
wrote:

 Hi,

 I am trying to make calls using an authenticated (Oauth2 client) mcc test 
 account (760-716-1008) . I am using the pending developer token from a 
 production mcc account (532-179-4410).


 I attached the log files.

 Please help,

 Thanks
 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Budget creation failing since update to colsolidated billing

2013-10-16 Thread Danial Klimkin
Hello Allen,


Please double-check the logs to see if there is an error message. There 
should be one if you request has reached our servers.


-Danial, AdWords API Team.


On Tuesday, October 15, 2013 3:43:43 AM UTC+4, Allen wrote:

 Anyone else having this problem? Start last week after the Google update 
 to Consolidated Billing. 

 Budget creation fails, no error msg.

 Suspect it is due to lack of handling for time (or timezones?) on 
 Budgets in the new system. ? 


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: allready have acces to the Adwords API, and forced to apply fo acces again for test account !?

2013-10-16 Thread Danial Klimkin
Hello Charles,


You don't need an approved token to use test accounts but you can use one. 
If you already have an approved developer token, just use it against the 
test MCC (no linking is required).

Invalid grant error is actually an OAuth2-level error (so you are not 
reaching the API servers yet). Please make sure your configuration is 
correct (client id and secret, scope) and you are logged in under the 
expected AdWords user.


-Danial, AdWords API Team.


On Monday, October 14, 2013 6:11:11 PM UTC+4, charles vlug wrote:

 Hi,

 i allready have acces to the Adwords API, since begin this year (Customer-id: 
 763-640-7721 
 ).
 Getting acces took several months and a lot of emails. 
 Now i want to use the API, i must make a test account, and apply fo acces, 
 while i have allready acces in a non-test account !
 How can i avoid getting acces again, and have to wait wating for months?

 I have red that with a test account, there is no need to have the token 
 authorised, however, when using the api, i get theinvalid_grant error.
 Please help

 regards,
 Charles 
 RE: [1086579669] [#1086579669]  [6-422900285]


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: ForwardCompatibilityMap missing from response campaignservice

2013-10-16 Thread Danial Klimkin
Hello Jaap-Jan Frans,


Thanks, I understand your concern. This particular field was only available 
in FCM and for Enhanced Campaign migration only. We try hard to not to 
introduce changes to the older versions outside of FCM.


-Danial, AdWords API Team.


On Wednesday, October 16, 2013 5:04:01 PM UTC+4, fr...@bgenius.com wrote:

 Hi Danial,


 Thank you for pointing this out.

 However, the migration guide you refer to is the guide to migrate to 
 V201309. 
 On our production servers we use V201306. We do not expect a feature to 
 break in a (still supported) previous version of the API, if it's 
 discontinuation is mentioned only in the migration guide of a new version. 
 We'd expect it to be supported  until the sunset of the version before the 
 latest one (in this case, the sunset of v201306 in march 2014).

 In the future it would be helpful if breaking changes that also affect 
 previous versions of the API are mentioned on for example the developers 
 blog, it would prevent a situation like this.


 Thanks!

 Kind regards,
 Jaap-Jan Frans




 Op woensdag 16 oktober 2013 14:51:04 UTC+2 schreef Danial Klimkin:

 Hello Jaap-Jan,


 This property was only available as part of ForwardCompatibilityMap. This 
 is the part of the API that provides certain functionality temporarily and 
 can be updated in between releases.

 The change was announced in the migration guide:

   https://developers.google.com/adwords/api/docs/guides/migration-v201309


 -Danial, AdWords API Team.



 On Wednesday, October 16, 2013 10:42:04 AM UTC+4, fr...@bgenius.comwrote:

 Hi Danial,

 Thank you for your reply. 

 It would have been nice to know this change was coming.
 Did we perhaps miss an announcement that it was to be removed?


 Kind regards,

 Jaap-Jan


 Op dinsdag 15 oktober 2013 15:18:04 UTC+2 schreef Danial Klimkin:

 Hello Jaap-Jan Frans,


 SuggestedBidModifier was a temporary field available for the period of 
 Enhanced Campaigns migration only. It is no longer available in the UI and 
 should not be returned via the API anymore.


 -Danial, AdWords API Team.


 On Monday, October 14, 2013 11:41:05 AM UTC+4, fr...@bgenius.com wrote:

 Dear Adwords Support Team,


 We use the ForwardCompatibilityMap of the Campaign object to retrieve 
 suggested mobile bid adjustments.

 This weekend while downloading campaigns of clients accounts we 
 noticed that sometimes the forward compatibility map is missing from the 
 response we get from the API.

 When we investigated it further we noticed that the map randomly is 
 included or excluded in the response 

 Here are two request ID's to retrieve the exact same campaigns:
 0004e8ade3ee40980ae5aac72dbd   
 0004e8ae0e301f980ae50e881430

 The requests both have the same fields etc. (see the attachments)

 In the response soap message of the first request ID the map is 
 missing. The response of the second request contains a map for each 
 campaign.
 The responses are also included as attachments.



 Can you look into this matter? Thank you!


 Kind regards,

 Jaap-Jan Frans 
 bGenius



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: ForwardCompatibilityMap missing from response campaignservice

2013-10-15 Thread Danial Klimkin
Hello Jaap-Jan Frans,


SuggestedBidModifier was a temporary field available for the period of 
Enhanced Campaigns migration only. It is no longer available in the UI and 
should not be returned via the API anymore.


-Danial, AdWords API Team.


On Monday, October 14, 2013 11:41:05 AM UTC+4, fr...@bgenius.com wrote:

 Dear Adwords Support Team,


 We use the ForwardCompatibilityMap of the Campaign object to retrieve 
 suggested mobile bid adjustments.

 This weekend while downloading campaigns of clients accounts we noticed 
 that sometimes the forward compatibility map is missing from the response 
 we get from the API.

 When we investigated it further we noticed that the map randomly is 
 included or excluded in the response 

 Here are two request ID's to retrieve the exact same campaigns:
 0004e8ade3ee40980ae5aac72dbd   
 0004e8ae0e301f980ae50e881430

 The requests both have the same fields etc. (see the attachments)

 In the response soap message of the first request ID the map is missing. 
 The response of the second request contains a map for each campaign.
 The responses are also included as attachments.



 Can you look into this matter? Thank you!


 Kind regards,

 Jaap-Jan Frans 
 bGenius


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: AdParamService

2013-10-14 Thread Danial Klimkin
Hello Anastasiya,


Please see:

  https://developers.google.com/adwords/api/docs/guides/ad-parameters


-Danial, AdWords API Team.


On Monday, October 14, 2013 4:55:53 PM UTC+4, Voronaya Anastasiya wrote:


 Hi!
 Could anybody explanation me how can I use AdParamService, please?


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: CampaignService returns

2013-10-14 Thread Danial Klimkin
Hello,


I wasn't able to reproduce this issue. Can you please send me full request 
and response code for this issue?

Please use Reply to author button to avoid sharing with the group.


-Danial, AdWords API Team.


On Monday, October 14, 2013 5:38:12 PM UTC+4, mm wrote:

 Hey guys -
 I am also seeing this error, but I am using the v201309 java client 
 library (old library). This prevents our being able to move to v201309.

 Thanks!
 mm

 On Friday, October 11, 2013 6:26:33 AM UTC-5, GrueneOrchidee wrote:

 I want to get all campaigns of one customer. Therefor I use the 
 CampaignService of the adwords-appengine (version 1.20.0, v201309, Java). 

 Here is my SOAP Request:

 ?xml version=1.0 encoding=UTF-8?soap:Envelope xmlns:soap=
 http://schemas.xmlsoap.org/soap/envelope/;
 soap:Header
 RequestHeader xmlns=https://adwords.google.com/api/adwords/cm/v201309;
 partialFailurefalse/partialFailure
 userAgentnull (AwApi-Java, AdWords-AppEngine/1.20.0, 
 Common-Java/1.20.0, JAX-WS/Unknown, Java/1.7.0, maven)/userAgent
 authTokenX/authToken
 developerTokenX/developerToken
 clientCustomerId5031923170/clientCustomerId
 /RequestHeader
 /soap:Header
 soap:Body
 get xmlns=https://adwords.google.com/api/adwords/cm/v201309; 
 xmlns:ns2=https://adwords.google.com/api/adwords/billing/v201309; 
 xmlns:ns3=https://adwords.google.com/api/adwords/rm/v201309; xmlns:ns4=
 https://adwords.google.com/api/adwords/mcm/v201309; xmlns:ns5=
 https://adwords.google.com/api/adwords/o/v201309; xmlns:ns6=
 https://adwords.google.com/api/adwords/ch/v201309;
 serviceSelector
 fieldsAdServingOptimizationStatus/fields
 fieldsAmount/fields
 fieldsBidCeiling/fields
 fieldsBidType/fields
 fieldsBiddingStrategyId/fields
 fieldsBiddingStrategyName/fields
 fieldsBiddingStrategyType/fields
 fieldsBudgetId/fields
 fieldsBudgetName/fields
 fieldsBudgetReferenceCount/fields
 fieldsBudgetStatus/fields
 fieldsDeliveryMethod/fields
 fieldsEligible/fields
 fieldsEndDate/fields
 fieldsEnhancedCpcEnabled/fields
 fieldsFrequencyCapMaxImpressions/fields
 fieldsId/fields
 fieldsIsBudgetExplicitlyShared/fields
 fieldsLevel/fields
 fieldsName/fields
 fieldsPeriod/fields
 fieldsPricingMode/fields
 fieldsRejectionReasons/fields
 fieldsServingStatus/fields
 fieldsSettings/fields
 fieldsStartDate/fields
 fieldsStatus/fields
 fieldsTargetContentNetwork/fields
 fieldsTargetGoogleSearch/fields
 fieldsTargetPartnerSearchNetwork/fields
 fieldsTargetSearchNetwork/fields
 fieldsTimeUnit/fields
 ordering
 fieldName/field
 sortOrderASCENDING/sortOrder
 /ordering
 /serviceSelector
 /get
 /soap:Body
 /soap:Envelope

 As result, I get the following error:

 Cannot construct an instance of 
 com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.Setting 
 because it is abstract.  You are probably missing an @Uses annotation while 
 invoking public abstract 
 com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.CampaignPage
  
 com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.CampaignServiceInterface.get(com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.Selector)
  
 throws 
 com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.ApiException_Exception
  
 with params 
 [com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.Selector@6353c0].

 What can I do for avoiding this error?



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: MCC Test Account returning QuotaCheckError.ACCOUNT_INACTIVE on API Call

2013-10-14 Thread Danial Klimkin
Hello Rob,


You can develop against MCC test account but you need to use a token from a 
production account. This token does not need to be approved though, so you 
can request one and use it right away.


-Danial, AdWords API Team.

On Sunday, October 13, 2013 12:39:08 PM UTC+4, rob.l...@mac.com wrote:

 So is it correct that I can't develop against a MCC test account??  I have 
 to have a production account, which I can't get because I have nothing to 
 show for an application yet???   Currently I'm just running the example php 
 scripts to familiarise my self with the api before we start the design work 
 of a new application.

 Can someone please advise

 Thanks

 Rob

 On Thursday, August 29, 2013 9:29:02 AM UTC+1, Anash P. Oommen (AdWords 
 API Team) wrote:

 Hi,

 Looks like the error happens because your developer token is in a test 
 MCC account, we don't support that configuration. Test MCCs are meant to 
 test ManagedCustomerService related calls or to manage a hierarchy of test 
 Adverttiser accounts. 

 Please use your production developer token and test MCC credentials to 
 make calls to test account. If you don't have a production developer token, 
 you should sign up for one from a non-test MCC account.

 We will update the documentation to make this more clear.

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor.

 On Thursday, August 29, 2013 7:47:11 AM UTC+1, PinYun Peng wrote:

 I have the same problem.

 Application Client ID: 
 188261182067-vjueniqmj56m5630nggcurqv1crejahd.apps.googleusercontent.comTest
  Account MCM ID: 
 156-754-4053 

 The attach file is soap_xml.log of failed API Call. 
 ( The access_token and developerToken are replaced by random text. If 
 they are necessary, I can re-attach.)


 On Wednesday, August 28, 2013 4:59:07 PM UTC+8, Anash P. Oommen (AdWords 
 API Team) wrote:

 Hi,

 Yes, that shouldn't happen as far as I can tell. A test account is 
 closed and hence should be inactive, but you shouldn't get that error 
 message back. Could you post a sanitized SOAP message so I can take a look?

 Cheers,
 Anash P. Oommen,
 AdWords API Advisor



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups AdWords API Forum group.
To post to this group, send email to adwords-api@googlegroups.com
To unsubscribe from this group, send email to
adwords-api+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Impossible to ADD sitelinks: matching function fails to be pushed with strange error

2013-10-14 Thread Danial Klimkin
Hello Francesco,


Please double-check the feed and campaign IDs are correct. If still in 
doubt, let me know your clientCustomerID.


-Danial, AdWords API Team.


On Wednesday, October 9, 2013 7:05:10 PM UTC+4, Francesco Della Vedova 
wrote:

 Hi all,

 I'm trying work out the new way to push sitelinks with the feed services, 
 but i'm getting a very strange error: the trigger seems to be a malformed 
 string, but it's not coming from my outgoing SOAP 

 attached the SOAP log

 thanks for your help


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: CustomerService OAUTH_TOKEN_HEADER_INVALID

2013-10-14 Thread Danial Klimkin
Hello Danil,


From the request it looks like you are sending AuthToken string. Are you 
also sending OAuth HTTP header?


-Danial, AdWords API Team.


On Tuesday, October 8, 2013 3:58:17 PM UTC+4, Danil Ivanov wrote:

 Hi all.
 I make a request to API CustomerService and I get a 
 response AuthenticationError.OAUTH_TOKEN_HEADER_INVALID.
 But request ReportDefinitionService is successful. I used production. My 
 developer_token approved (not for this account).

 What am I doing wrong? Can you help me, please?

 Curl: 

 curl --header Content-Type: application/soap+xml --data @customer.xml 
 https://adwords.google.com/api/adwords/mcm/v201306/CustomerService?wsdl


 customer.xml:

 ?xml version=1.0 encoding=UTF-8?
 soap:Envelope
 xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
 xmlns=https://adwords.google.com/api/adwords/mcm/v201306;
 soap:Header
 RequestHeader
 authTokenmy_token/authToken
 userAgentdanilphd/userAgent
 developerTokenmydev_token/developerToken
 clientCustomerId111-111-/clientCustomerId
 /RequestHeader
 /soap:Header
 soap:Body
 get/get
 /soap:Body
 /soap:Envelope


  Response:

 soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
 soap:Header
 ResponseHeader xmlns:ns2=
 https://adwords.google.com/api/adwords/cm/v201306;
 xmlns=
 https://adwords.google.com/api/adwords/mcm/v201306;
 
 ns2:requestId0004e8391ab899400ade10463d18/ns2:requestId
 ns2:serviceNameCustomerService/ns2:serviceName
 ns2:methodNameget/ns2:methodName
 ns2:operations0/ns2:operations
 ns2:responseTime192/ns2:responseTime
 /ResponseHeader
 /soap:Header
 soap:Body
 soap:Fault
 faultcodesoap:Server/faultcode
 faultstring[AuthenticationError.OAUTH_TOKEN_HEADER_INVALID 
 @ ; trigger:'lt;nullgt;']/faultstring
 detail
 ApiExceptionFault xmlns=
 https://adwords.google.com/api/adwords/mcm/v201306;
xmlns:ns2=
 https://adwords.google.com/api/adwords/cm/v201306;
 
 ns2:message[AuthenticationError.OAUTH_TOKEN_HEADER_INVALID @ ; 
 trigger:'lt;nullgt;']
 /ns2:message
 
 ns2:ApplicationException.TypeApiException/ns2:ApplicationException.Type
 ns2:errors xmlns:xsi=
 http://www.w3.org/2001/XMLSchema-instance;
 xsi:type=ns2:AuthenticationError
 ns2:fieldPath/ns2:fieldPath
 ns2:triggerlt;nullgt;/ns2:trigger
 
 ns2:errorStringAuthenticationError.OAUTH_TOKEN_HEADER_INVALID/ns2:errorString
 
 ns2:ApiError.TypeAuthenticationError/ns2:ApiError.Type
 
 ns2:reasonOAUTH_TOKEN_HEADER_INVALID/ns2:reason
 /ns2:errors
 /ApiExceptionFault
 /detail
 /soap:Fault
 /soap:Body
 /soap:Envelope



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Test account

2013-10-14 Thread Danial Klimkin
Hello,


It is possible to only have one AdWords account for a Google account. To 
create a new MCC or test account, please use a different Google account 
(e.g. a different gmail address).


-Danial, AdWords API Team.


On Wednesday, October 9, 2013 6:04:10 PM UTC+4, te...@affluences.ca wrote:

 Hi,  I Have a problem.

 I have already an account of google adword and gmail.  I ask to have an 
 account test but it say me that I have already an account.  The I go in my 
 account google adwords in my account and API Adwords center and my 
 token is Developer token.  I received an email grom google that I need an 
 test account.  How I did to create an test accaount.  The account i create 
 was my test account?


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: AdWords API to get AdWords Express stats?

2013-10-14 Thread Danial Klimkin
Hello Jun,


AdWords Express campaigns are currently not available via the API.


-Danial, AdWords API Team.


On Thursday, October 10, 2013 6:14:41 AM UTC+4, junm...@gmail.com wrote:

 Hi,

 Is there a way to use AdWords API to get AdWords Express stats?
 I'd like to get impressions, clicks, and cost as we do for AdWords 
 Campaigns.

 Best,
 Jun



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: An error has occurred: [QuotaCheckError.INCOMPLETE_SIGNUP @ ; trigger:'']

2013-10-14 Thread Danial Klimkin
Hello,


This error usually means AdWords API Terms and Conditions were not 
accepted. Please set up the billing and review / sign TC on the MCC 
account.


-Danial, AdWords API Team.


On Thursday, October 10, 2013 12:22:20 PM UTC+4, Proxy Singh wrote:

 I m getting  error msg 
An error has occurred: [QuotaCheckError.INCOMPLETE_SIGNUP @ ; trigger:'
 when i execute  
 /adwords/examples/AdWords/v201309/BasicOperations/GetCampaigns.php


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: what is the maximum lenght of gclid field in google adwords

2013-10-14 Thread Danial Klimkin
Hello,


There is no limit published and the length can change in the future. Please 
handle it as any other URL parameter.


-Danial, AdWords API Team.

On Thursday, October 10, 2013 8:45:30 PM UTC+4, Proxy Singh wrote:

 what is the maximum lenght of gclid field in google adwords


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: CampaignService returns

2013-10-14 Thread Danial Klimkin
Thanks for the details, I've reproduced it. Will follow up once we have it 
resolved.


-Danial, AdWords API Team.


On Monday, October 14, 2013 6:20:49 PM UTC+4, jasonl_cadev wrote:

 I see this error too.

 In my case it happens when calling get on a campaign that was created 
 prior to v201309 AND the campaign houses PLA ads AND I'm including the 
 field Settings.  Removing Settings from the field list returns the 
 campaign successfully. 

 We are currently having use v201306 as this version does return 
 successfully when including Settings.

 Thank

 Here's my request:
 soapenv:Envelope xmlns:soapenv=http://schemas.xmlsoap.org/soap/envelope/; 
 xmlns:v20=https://adwords.google.com/api/adwords/cm/v201309;
soapenv:Header
   v20:RequestHeader
  v20:authTokenxxx/v20:authToken
  v20:clientCustomerId715-484-4897/v20:clientCustomerId
  v20:developerTokenxx/v20:developerToken
   /v20:RequestHeader
/soapenv:Header
soapenv:Body
   v20:get
  v20:serviceSelector
  
 v20:fieldsId/v20:fields
 v20:fieldsName/v20:fields
 v20:fieldsStatus/v20:fields
 v20:fieldsServingStatus/v20:fields
 v20:fieldsStartDate/v20:fields
 v20:fieldsEndDate/v20:fields
 v20:fieldsAdServingOptimizationStatus/v20:fields
 v20:fieldsPeriod/v20:fields
 v20:fieldsAmount/v20:fields
 v20:fieldsDeliveryMethod/v20:fields
 v20:fieldsPricingModel/v20:fields
 v20:fieldsConversionOptimizerBidType/v20:fields
 v20:fieldsEnhancedCpcEnabled/v20:fields
 v20:fieldsEligible/v20:fields
 v20:fieldsFrequencyCapMaxImpressions/v20:fields
 v20:fieldsTimeUnit/v20:fields
 v20:fieldsLevel/v20:fields
 v20:fieldsTargetGoogleSearch/v20:fields
 v20:fieldsTargetSearchNetwork/v20:fields
 v20:fieldsTargetContentNetwork/v20:fields
 v20:fieldsTargetPartnerSearchNetwork/v20:fields
 v20:fieldsBidCeiling/v20:fields
 v20:fieldsSettings/v20:fields
 v20:predicates
 v20:fieldId/v20:field
 v20:operatorIN/v20:operator
 v20:values83189794/v20:values
 /v20:predicates

  /v20:serviceSelector
   /v20:get
/soapenv:Body
 /soapenv:Envelope

 Here's my response:
 soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
soap:Header
   ResponseHeader xmlns=
 https://adwords.google.com/api/adwords/cm/v201309;
  requestId0004e8b4063b4eb00aedebcc1cdf/requestId
  serviceNameCampaignService/serviceName
  methodNameget/methodName
  operations0/operations
  responseTime122/responseTime
   /ResponseHeader
/soap:Header
soap:Body
   soap:Fault
  faultcodesoap:Server/faultcode
  faultstringCannot construct an instance of 
 com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.Setting 
 because it is abstract.  You are probably missing an @Uses annotation while 
 invoking public abstract 
 com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.CampaignPage
  
 com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.CampaignServiceInterface.get(com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.Selector)
  
 throws 
 com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.ApiException_Exception
  
 with params 
 [com.google.ads.api.services.campaignmgmt.campaign.v201309.jaxbgen.Selector@2e3bbb]./faultstring
   /soap:Fault
/soap:Body
 /soap:Envelope


 On Monday, October 14, 2013 10:04:42 AM UTC-4, Danial Klimkin wrote:

 Hello,


 I wasn't able to reproduce this issue. Can you please send me full 
 request and response code for this issue?

 Please use Reply to author button to avoid sharing with the group.


 -Danial, AdWords API Team.


 On Monday, October 14, 2013 5:38:12 PM UTC+4, mm wrote:

 Hey guys -
 I am also seeing this error, but I am using the v201309 java client 
 library (old library). This prevents our being able to move to v201309.

 Thanks!
 mm

 On Friday, October 11, 2013 6:26:33 AM UTC-5, GrueneOrchidee wrote:

 I want to get all campaigns of one customer. Therefor I use the 
 CampaignService of the adwords-appengine (version 1.20.0, v201309, Java). 

 Here is my SOAP Request:

 ?xml version=1.0 encoding=UTF-8?soap:Envelope xmlns:soap=
 http://schemas.xmlsoap.org/soap/envelope/;
 soap:Header
 RequestHeader xmlns=https://adwords.google.com/api/adwords/cm/v201309
 
 partialFailurefalse/partialFailure
 userAgentnull (AwApi-Java, AdWords-AppEngine/1.20.0, 
 Common-Java/1.20.0, JAX-WS/Unknown, Java/1.7.0, maven)/userAgent
 authTokenX/authToken
 developerTokenX/developerToken
 clientCustomerId5031923170/clientCustomerId
 /RequestHeader
 /soap:Header
 soap:Body
 get xmlns=https://adwords.google.com/api/adwords/cm/v201309; 
 xmlns:ns2=https://adwords.google.com/api/adwords/billing/v201309; 
 xmlns:ns3=https://adwords.google.com/api/adwords/rm/v201309; 
 xmlns:ns4=https://adwords.google.com/api/adwords/mcm/v201309; 
 xmlns:ns5=https://adwords.google.com/api/adwords/o/v201309; 
 xmlns:ns6=https://adwords.google.com/api/adwords/ch/v201309

Re: V201309 Placement Performance Report - Managed Automtic

2013-10-14 Thread Danial Klimkin
Hello DK,


Thanks for bringing this up. I'll check if we can have a separate column 
for this property.


-Danial, AdWords API Team.


On Monday, October 14, 2013 4:04:49 PM UTC+4, okieb...@gmail.com wrote:

 Happy Columbus Day Google API Team - Quick Question on V201309 and 
 PLACEMENT_PERFORMANCE_REPORT? 
 Looking for proper reportDefinition to obtain Managed vs Automatic 
 placements field - available via the Status column in UI and as 
 documented here: http://goo.gl/oJV9Te.  Do I need to continue to use two 
 reports: PLACEMENT_PERFORMANCE_REPORT for Managed placements and 
 AUTOMATIC_PLACEMENTS_PERFORMANCE_REPORT?

 DK

 On Friday, October 11, 2013 11:30:53 AM UTC-4, okieb...@gmail.com wrote:

 Reading the release notes for V201309, I was excited to see

 Placement Performance Report- Automatic placements are now included in 
 this report.

 I am now attempting to identify automatic versus managed placements 
 within this report.  So I started at the UI and used the tab “Display 
 Network” and then navigated to “Placements”.  Noted the column “Status” 
 provided me with the information and looked into the documentation for the 
 report 
 type http://goo.gl/AoJ0lQ and found the API field name.  So I created 
 the following report, and low and behold the API output gave me the values 
 Paused, Deleted or Active for this and not the Managed, Automatic.

 What should my report definition look like to get column that designates 
 a managed vs. automatic placement, like the Status column in the UI?


  reportDefinition

 selector

   fieldsDate/fields

   fieldsAdNetworkType1/fields

   fieldsStatus/fields

   fieldsCampaignName/fields

   fieldsAdGroupName/fields

   fieldsDestinationUrl/fields

   fieldsCriteriaDestinationUrl/fields

   fieldsPlacementUrl/fields

   fieldsDisplayName/fields

   fieldsCost/fields

   fieldsImpressions/fields

   fieldsClicks/fields

   fieldsConversions/fields

   fieldsViewThroughConversions/fields

   fieldsCtr/fields

   fieldsAverageCpc/fields

   fieldsConversionRate/fields

   fieldsCostPerConversion/fields

   fieldsConversionsManyPerClick/fields

   fieldsConversionValue/fields

 - dateRange

   min20131001/min

   max20131001/max

   /dateRange

   /selector

   reportNameCustom PLACEMENT_PERFORMANCE_REPORT/reportName

   reportTypePLACEMENT_PERFORMANCE_REPORT/reportType

   dateRangeTypeCUSTOM_DATE/dateRangeType

   downloadFormatXML/downloadFormat

   /reportDefinition



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Where is keywordless performance report type ?

2013-10-14 Thread Danial Klimkin
Hello,


DSA (keywordless ads) performance can be obtained with the Ad Performance 
report.


-Danial, AdWords API team.


On Friday, October 11, 2013 5:59:56 PM UTC+4, 照沼領 wrote:


 At AdWordsApi requirements R.1100-1004 Keywordless Performance .
 Which match report type  ?
 Is  it Keywords Performance ?


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Changing the status of an automatic placement

2013-10-14 Thread Danial Klimkin
Hello,


Please avoid responding to very old threads. Instead, create a new one for 
your issue / question.

I am locking this one as it is from 2011.


-Danial.


On Saturday, October 12, 2013 6:03:56 AM UTC+4, s wrote:

 Hi,

 I was wondering if you could help me out with modifying placement bids. 



 On Monday, March 28, 2011 11:28:20 AM UTC-4, rbea...@cellcastmedia.frwrote:

 Nevermind, found my answers.



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: My test account returns AuthenticationError.NOT_ADS_USER Exception

2013-10-14 Thread Danial Klimkin
Hello Julius,


It looks like you are trying to use Service Accounts / OAuth2 JWT flow. 
This flow is only available if you have a Google Apps account and is rarely 
used. It only makes sense to use it if you need user impersonation (your 
app needs to act as different users).

I suggest using offline or web flow instead.


-Danial, AdWords API Team.


On Monday, October 14, 2013 6:48:30 PM UTC+4, Julius Markūnas wrote:

 Hello,

 I'm having the same problem. Client customer ID and developer_token are 
 taken from real account, which is pending for approval, but I still get 
 AuthenticationError.NOT_ADS_USER error. Test account is 
 tes...@innerballoons.com javascript:. Can you check what am I doing 
 wrong?

 My config:

  :service = {
 :environment = :PRODUCTION
   },

   :library = {
 :log_level = DEBUG
   },

   :authentication = {
 method: OAUTH2_JWT,
 oauth2_issuer: '#2###@developer.gserviceaccount.com',
 oauth2_secret: 'secret',
 oauth2_keyfile: 'adwords-key.p12',
 developer_token: '###,
 client_customer_id: '150-###-'

   }



 Julius


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: I can't figure out how to get past a QuotaCheckError.INCOMPLETE_SIGNUP error with test account.

2013-10-11 Thread Danial Klimkin
Hello Francisco,


This error message means you don't have terms and conditions accepted. 
Billing setup and TC needs to be accepted for the MCC account (not a test 
one), I don't see it for the one you listed.


-Danial, AdWords API Team.


On Tuesday, October 8, 2013 1:55:17 AM UTC+4, Francisco Castillo wrote:

 I know the most frequent causes of this error are that i haven't signed 
 the TOS, or set up billing, but i did. Trust me i did. 

 The MCC account( 617-597-2674 ) is pretty active, and ony now are we going 
 to use the API. It has been active for a while, it would be impossible to 
 be where it's at without billing and tos signed. 
 The Test account ( 347-128-0765 ) , i have the charges made to my card to 
 verify billing, and all, so i expect it to be working fine. 

 I'm using PHP. The auth.ini file is a bit confusing, but just to be sure, 
 i wanted to confirm the following:

 developerToken = XXX --  From the MCC account
 userAgent = Whatever --  Does not matter
 clientCustomerId = XXX-XXX- -- From test account
 client_id = XX  --  Does not matter, using MCC account
 client_secret = XXX  --  Does not matter, using MCC account
 refresh_token = XX -- Generated using the Test account. 

 Is this correct? How do i know where's my error.?


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Re marketing Issues

2013-10-11 Thread Danial Klimkin
Hello Ram,


As for the API, please see the guide available here:

  https://developers.google.com/adwords/api/docs/guides/remarketing

For general product-level questions, please check with the general AdWords 
support.


-Danial, AdWords API Team.


On Monday, October 7, 2013 6:05:37 PM UTC+4, Ram Reddy wrote:

 Hello All,

 I am currently working for a customer who requested me for the re 
 marketing tag. Right now for our website the re marketing tag is live but 
 the problem we are facing is we just want to have a demo version of its 
 working. Can some one guide on this issue. 


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: An error has occurred: The client customer ID must be specified for report downloads.

2013-10-11 Thread Danial Klimkin
Hello Rishi,


The clientCustomerID provided is an MCC account ID. Reports can be ran 
against advertiser (non-MCC) accounts only.

Also, you can't specify the clientCustomerId in the report definition, it 
is ignored here:

 $reportDefination-clientCustomerId = '715-625-1143';


-Danial, AdWords API Team.

On Monday, October 7, 2013 8:13:04 PM UTC+4, Rishi wrote:

 Getting The client customer ID must be specified for report downloads 
 while tring to download the keywordsPerformance report.

 This is what I have on the file:

 function DownloadCriteriaReportExample(AdWordsUser $user, $filePath) {
   // Load the service, so that the required classes are available.
   $user-LoadService('ReportDefinitionService', ADWORDS_VERSION);

   // Create selector.
   $selector = new Selector();
   $selector-fields = array('CampaignId', 'AdGroupId', 'Id', 'Criteria',
   'CriteriaType', 'Impressions', 'Clicks', 'Cost');

   // Filter out deleted criteria.
   $selector-predicates[] = new Predicate('Status', 'NOT_IN', 
 array('DELETED'));

   // Create report definition.
   $reportDefinition = new ReportDefinition();
   $reportDefinition-selector = $selector;
   $reportDefination-clientCustomerId = '715-625-1143';
   $reportDefinition-reportName = 'Criteria performance report #' . 
 uniqid();
   $reportDefinition-dateRangeType = 'LAST_7_DAYS';
   $reportDefinition-reportType = 'CRITERIA_PERFORMANCE_REPORT';
   $reportDefinition-downloadFormat = 'CSV';

   // Exclude criteria that haven't recieved any impressions over the date 
 range.
   $reportDefinition-includeZeroImpressions = FALSE;

   // Set additional options.
   $options = array('version' = ADWORDS_VERSION, 'clientCustomerId' = 
 '7156251143', 'returnMoneyInMicros' = TRUE);

   // Download report.
   ReportUtils::DownloadReport($reportDefinition, $filePath, $user, 
 $options);

   printf(Report with name '%s' was downloaded to '%s'.\n,
   $reportDefinition-reportName, $filePath);
 }


 try {
 // Get AdWordsUser from credentials in ../auth.ini
 // relative to the AdWordsUser.php file's directory.
 $user = new AdWordsUser();

 // Log every SOAP XML request and response.
 $user-LogAll();
 //$user-GetAuthToken();
 // Load the oAuth settings
 $user-SetOAuth2Info();
 //$user-SetOAuth2Info(loadAuth($tokenFilename));
   

 // Download the report to a file in the same directory as the example.
 $filePath = dirname(__FILE__) . '/report.csv';

 // Run the example.
 DownloadCriteriaReportExample($user, $filePath);
 } catch (Exception $e) {
 printf(An error has occurred: %s\n, $e-getMessage());
 }

 Please advise.


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Download report(Keyword performance) for all accounts and campaigns (single report) using the Adwords API

2013-10-11 Thread Danial Klimkin
Closing as dupe for:

  https://groups.google.com/d/msg/adwords-api/0bjNwKbbTVo/HqIBNtx-9W0J


-Danial.

On Tuesday, October 8, 2013 5:35:15 AM UTC+4, ekantheshw...@gooddata.com 
wrote:

 I am new to Adwords and I am trying to figure out if there is a way to 
 download report(Keyword performance) for all accounts and campaigns (single 
 report) using the Adwords API. I am able to get the report for individual 
 ClientCustomerIds, but I want the report at the level of all accounts and 
 campaigns. This is possible from the adwords account web interface by 
 selecting the option All accounts and campaigns  when creating a 
 report. I want the same report using the API.

 Please let me know if there is any way to achieve that.

 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Is Target CPA - many-per-click for Conv. Optimizer campaigns available in Google API v201309

2013-10-11 Thread Danial Klimkin
Hello,


Target_CPA is the only bid type available for ConversionOptimizer as of 
v201309. You can set it as any other bidding strategy:

  
https://developers.google.com/adwords/api/docs/reference/v201309/BiddingStrategyService.SharedBiddingStrategy


-Danial, AdWords API Team.


On Wednesday, October 9, 2013 3:12:23 PM UTC+4, shobha.p...@gmail.com wrote:

 Hi Adwords API Team,

 Can you pls let us know if it is possible to set Target CPA on 
  many-per-click basis for the conversion optimizer campaigns in the new 
 version of the API release?

 Thanks,
 Shobha


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Is it possible to change the bids for auto targets under Dynamic Search Ads - Campaigns using v201309?

2013-10-11 Thread Danial Klimkin
Hello,


DSA are available as an ad type:

  
https://developers.google.com/adwords/api/docs/reference/v201309/AdGroupAdService.DynamicSearchAd

Bids can be retrieved and updated with the bidding configuration, see:

  https://developers.google.com/adwords/api/docs/guides/bidding


-Danial, AdWords API Team.


On Wednesday, October 9, 2013 3:08:34 PM UTC+4, shobha.p...@gmail.com wrote:

 Hi Adwords API Team,

 We want to change the bids for Auto Targets under Dynamic Search Campaigns 
 using v201309. Can you please let us know the following:

 1. How can the bids be retieved?
 2. How can we update the bids?

 Thanks,
 Shobha



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Retrieving DSA performance data aggregated at the ad level

2013-10-11 Thread Danial Klimkin
Hello Jaap-Jan Frans,


Thank you for bringing this up. Indeed, ad performance report should 
include DSA, I'll follow up on it internally.


-Danial, AdWords API Team.


On Wednesday, October 9, 2013 1:20:02 PM UTC+4, fr...@bgenius.com wrote:

 Dear Adwords API support,


 Since the release of V201309 a few features went out of beta, Dynamic 
 Search Ads being one of them.

 We would like to implement better support for DSA for our users and are 
 investigating the possibilities now DSA API support is available for 
 everyone.

 A question we have is: What is the recommended way to retrieve DSA 
 performance data (stats and conversion data) aggregated at theAd level?

 We've researched two possible ways to achieve this:

 A) Retrieving it via the Ad performance report
 The Ad performance report offers the AdType field to filter on specific ad 
 types. The predicate 'DYNAMIC_SEARCH_AD' has been noted in the Ad 
 performance report type 
 definitionhttps://google-developers.appspot.com/adwords/api/docs/appendix/reports#ad
  table 
 for some time now, but using it would never return DSA data because DSA was 
 a Beta feature and the data was filtered out of the Ad Performance report 
 for non beta users, as Kevin Winter points out here 
 https://groups.google.com/d/msg/adwords-api/pr0h87cwnMk/8T21CjftUqEJin 
 response to a user who suspected the DSA results were filtered out of the 
 Ad Performance report.

 We expected that after the release of v201309 and DSA being out of beta, 
 using this predicate for the adtype field would now give us the dsa-ad 
 specific performance data in the ad performance report. Tests however have 
 shown that this is not the case.

 B) Retrieving it using the 'Keywordless Query' or the 'Keywordless 
 Category' report
 Another possibility we researched is using the Keywordless report types. 
 Problem is that neither report type is focussed on ad level, but aggregate 
 data on category level and search term level. They contain no fields that 
 we can use to directly match performance data to a specific DSA ad (like an 
 Ad ID field)



 Is itexpected behaviour on the API's end that the Ad Performance report 
 still has DSA data filtered out now DSA is out of beta? In that case it 
 might be good the remove 'DYNAMIC_SEARCH_AD' as a predicate from the report 
 type definition, as it can confuse API users. If it is not the case will 
 the ad performance report include the DSA Ad data in the near future? 

 What is your recommended way of retrieving DSA performance data aggregated 
 on ad level?



 Kind regards,
 Jaap-Jan Frans
 bGenius





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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to implicitly create an Individual Budget when creating the Campaign in v201309?

2013-10-10 Thread Danial Klimkin
Thanks, you are correct. I'll update the guide.


-Danial, AdWords API Team.


On Wednesday, October 9, 2013 2:58:36 AM UTC+4, HK wrote:

 Thanks, Danial. That's what I was afraid of. I would suggest you remove 
 the  or the AdWords API v201309 part from the above documentation 
 snippet then, as using the APIs, you can't implicitly create the budget. 
 You have to explicitly do it.

 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: AD_GROUP_BIDDING_STRATEGY_OVERRIDES_PER_CAMPAIGN

2013-10-10 Thread Danial Klimkin
Hi,


Please see my latest response:

In order to avoid this error, you need to not to send BiddingType or 
BiddingScheme in AdGroup-level calls. If they are specified, AdGroup-level 
override is created and there is a limit of 1000 per campaign.
The reason for it to get created is that the campaign-level setting can be 
changed at any time. In such a case the AdGroups created with bidding type 
specified need to retain the value provided.


-Danial, AdWords API Team.



On Tuesday, October 8, 2013 9:02:39 PM UTC+4, ionatan...@incuentra.com 
wrote:

 I'm having the same problem... I don't quite understand on what objects 
 the limit is... as Michael said, I have more than 1000 AdGroups on the 
 campaign, all created the same way (sending a bidding strategy 
 configuration) an now i'm unable to create another AdGroup in the same way.
 I also tried to query all the bidding strategy configurations, but I can't 
 find a way to do so (I tried using the BiddingStrategyService, but it says 
 there are 0 results, so I guess that's not it). I also don't know how to 
 see them in the adwords administration page, if there's a way to do so.
 The API version i'm using is 201306 and my account id is 8079245393. 
 Help is greatly appreciated!!


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: NOT_AUTHORIZED Error

2013-10-10 Thread Danial Klimkin
Hello AK,


How do you obtain your access and refresh tokens? Do you have AdWords scope 
included in the request?

Is the login used for OAuth2 flow allowed to access the MCC account you are 
trying to query?


-Danial, AdWords API Team.


On Friday, October 4, 2013 6:00:42 AM UTC+4, akinye...@centralr.co.nz wrote:


 Hi there,
 I am trying to create an adword account via the API. But any time I try to 
 mutate the ADD operation I keep getting NOT_AUTHORIZED error.

 Below is the code snippet:

   AdWordsUser user = new AdWordsUser();
 gsoAuth2TokenGenerator gsTkGen = new gsoAuth2TokenGenerator();


 void InitConfig()
 {
 try
 {
 //Config config Settings
 AdWordsAppConfig config = (AdWordsAppConfig)user.Config;
 config.DeveloperToken = oAuthDeveloperToken;
 config.AuthorizationMethod = 
 AdWordsAuthorizationMethod.OAuth2;
 config.ClientCustomerId = AccountCID;
 config.OAuth2PrnEmail = OAuth2PrnEmail;
 config.Email = email;
 config.OAuth2ClientId = oAuthClientID;
 config.OAuth2ClientSecret = oAuthClientsecret;
 config.OAuth2RedirectUri = oAuthRedirectURIs;
 config.OAuth2Scope = oAuthScope;
 config.Password = oAuthPassword;
 config.UserAgent = UserAgent;
 config.OAuth2Mode = 
 Google.Api.Ads.Common.Lib.OAuth2Flow.APPLICATION;
 config.AuthToken = AuthCode;
 config.OAuth2AccessToken = AccessToken;
 config.OAuth2RefreshToken = RefreshToken;

 if (AccessToken == null || RefreshToken == null)//Get 
 oAuth2 Token
 {
 var aToken = ;
 var rToken = ;

 //
 gsTkGen.GetTokens(oAuthClientID, oAuthClientsecret, 
 AuthCode, out aToken, out rToken);

 AccessToken = aToken;
 RefreshToken = rToken;
 // config.AuthToken = aToken;
 config.OAuth2AccessToken = aToken;
 config.OAuth2RefreshToken = rToken;
 // Refresh Access Token
 AccessToken = gsTkGen.GetAccessToken(oAuthClientID, 
 oAuthClientsecret, RefreshToken);
 
 }
 }
 catch (Exception)
 {

 throw;
 }
 }

 public string  CreateAccount()
 {
 try 
 {
 InitConfig();
 // Get the ManagedCustomerService.
 ManagedCustomerService managedCustomerService = 
 (ManagedCustomerService)user.GetService(AdWordsService.v201306.ManagedCustomerService);
 // Create account.
 ManagedCustomer customer = new ManagedCustomer();
 customer.name = accountName;
 customer.currencyCode = accountCurrencyCode;
 customer.dateTimeZone = accountDateTimeZone;

 // Create operations.
 ManagedCustomerOperation operation = new 
 ManagedCustomerOperation();
 operation.operand = customer;
 operation.@operator = Operator.ADD;
 try
 {
 ManagedCustomerOperation[] operations = new 
 ManagedCustomerOperation[] { operation };
 // Add account.
 
   //  ManagedCustomerService managedCustomerService = 
 (ManagedCustomerService)user.GetService(AdWordsService.v201306.ManagedCustomerService);
 ManagedCustomerReturnValue result = 
 managedCustomerService.mutate(operations);

 // Display accounts.
 if (result.value != null  result.value.Length  0)
 {
 ManagedCustomer customerResult = result.value[0];
 return Account with customer ID  + 
 customerResult.customerId + was created.;
 }
 else
 {
 return No accounts were created.;
 } 
 }
 catch (Exception ex)
 {
 return An Error Occurred:  + ex.Message;
 }
 }
 catch (Exception)
 {

throw;
 }
}

 Just a note: When we try other services like creating a campaign/Budget it 
 works fine.

 Regards,
 AK



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

Re: AdWords Paid Organic report through API

2013-10-10 Thread Danial Klimkin
Hello Dmytro,


This report is not yet available in the AdWords API.


-Danial, AdWords API Team.


On Wednesday, October 9, 2013 2:37:53 AM UTC+4, Dmytro Marushkevych wrote:

 How can one retrieve daily Paid  Organic Search Term report via AdWords 
 API? It is not on the list of pre-canned reports available, but there 
 should be some way to replicate it via AWQL, just need to know the right 
 tables to query.

 Many thanks!

 D.M.


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: AdGroupFeedService v201309: beta or not?

2013-10-10 Thread Danial Klimkin
Hello Zweitze,


The release notes actually mention this feature:

Feed services

Ad Group level feeds are now out of Beta and available to all users. 

So yes, it is out of Beta.


-Danial, AdWords API Team.

On Wednesday, October 9, 2013 6:21:36 PM UTC+4, Zweitze wrote:

 Hello,

 The AdGroupFeedService in 
 v201302https://developers.google.com/adwords/api/docs/reference/v201302/AdGroupFeedServiceand
  
 v201306https://developers.google.com/adwords/api/docs/reference/v201306/AdGroupFeedServicewas
  marked as beta and was not usable for most of us.
 The release notes of 
 v201309https://developers.google.com/adwords/api/docs/reference/#v201309(section
  API changes) state that AdGroupFeedService has no changes.

 But the v201309 
 docshttps://developers.google.com/adwords/api/docs/reference/v201309/AdGroupFeedServiceno
  longer say it is in beta.

 So, what is the real status?


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Download report using API for all accounts and Campaigns

2013-10-10 Thread Danial Klimkin
Hello,


AdWords API does not support cross-account requests and this includes 
reporting. In order to retrieve data for all accounts, you need to pull one 
report per account and merge them on your side.

This can also be done in parallel, for a reference we have one example in 
Ruby:

  
https://github.com/googleads/google-api-ads-ruby/blob/master/adwords_api/examples/v201309/reporting/parallel_report_download.rb


-Danial, AdWords API Team.


On Tuesday, October 8, 2013 5:10:59 AM UTC+4, ekantheshw...@gooddata.com 
wrote:

 I am new to Adwords and I am trying to figure out if there is a way to 
 download report(Keyword performance) for all accounts and campaigns (single 
 report) using the Adwords API. I am able to get the report for individual 
 ClientCustomerIds, but I want it at the level of all accounts and 
 campaigns. We can create such a report in the Adwords account web interface 
 by specifying All accounts and campaigns option. Just want the same 
 through APIs.

 Please let me know if there is any way.


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: OAuth2 response - Server Port configuration

2013-10-10 Thread Danial Klimkin
Hi Alan,


I see two threads about this issue on the forum from you. From the first 
one it looks like the issue was resolved. Please let us know if you still 
have questions on this one.


-Danial, AdWords API Team.


On Tuesday, October 8, 2013 1:33:06 AM UTC+4, Alan Coleman wrote:

 Hello everyone,

 I'm having some connection issues between my AdWords app on Bluehost 
 hosting and Google's servers.

 After the user grants access and the authorization code is returned back 
 to my server I'm receiving the following error.

 *Failed to connect to 2607:f8b0:400e:c02::54: Network is unreachable*
 *
 *
 Bluehost support has confirmed my suspicions that a port *may* need 
 opening to accept the response.

 So my question is, what port will the response be returning to? Is it 
 defined as part of the API or arbitrary depending on account settings?

 Many 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Announcing v201309 of AdWords API

2013-10-08 Thread Danial Klimkin
Hello Peter,


To confirm, v201306 sunset is scheduled for end of Mar 2014, see:

  https://developers.google.com/adwords/api/docs/sunset-dates

All client libraries were already released (the same day as the 
announcement) and should be supporting v201309. I'll check with the DotNet 
library owner to confirm on this case but I can see v201309 support is in 
place for the downloadable version here:

  https://code.google.com/p/google-api-adwords-dotnet/downloads/list


-Danial, AdWords API Team.


On Tuesday, October 8, 2013 2:09:30 AM UTC+4, CSPeter wrote:

 Given the somewhat small window between now and the sunset of v201306, can 
 we be provided with expected release dates for the client libraries?  

 Also, the change log for the dotnet client library 16.2.0 claims support 
 for v201309.  I pulled 16.2.0 from NuGet, but it does not have v201309 
 support.  It also claims removal of v201209, but that also still exists in 
 16.2.0 on nuget.  The release notes I refer to are here:
 https://code.google.com/p/google-api-adwords-dotnet/source/browse/ChangeLog

 Thank you,
 Peter

 On Thursday, October 3, 2013 8:57:42 PM UTC-4, Danial Klimkin wrote:

 Today we are releasing the AdWords API v201309. This latest release 
 introduces offline conversion import, adds new reports and also makes 
 several Beta features available to all API users. We've also reworked the 
 AdWords 
 API Developers site https://developers.google.com/adwords/api/ making 
 it more friendly and easier to navigate. Take a look and let us know what 
 you think!

 *v201309 Highlights:*

- *Offline conversions import.* This previously 
 announcedhttp://adwords.blogspot.ru/2013/09/measure-optimize-for-offline-sales-with.html
  AdWords 
feature is now also available via the API with a new 

 OfflineConversionFeedServicehttp://developers.google.com/adwords/api/docs/reference/v201309/OfflineConversionFeedService
 and Upload Conversion 
 trackerhttp://developers.google.com/adwords/api/docs/reference/v201309/ConversionTrackerService.UploadConversion
.
- *Configurable Conversion Tracker lookback window.* New Conversion 

 trackerhttp://developers.google.com/adwords/api/docs/reference/v201309/ConversionTrackerService.ConversionTracker#ctcLookbackWindow
  field 
allows to configure click-through conversion lookback 
 windowhttp://adwords.blogspot.com/2013/09/customize-conversion-window.html 
 for 
AdWords and Offline conversion trackers.
- *Reporting updates.* Gender 
 Performancehttps://developers.google.com/adwords/api/docs/appendix/reports#gender
 and Age Range 
 Performancehttps://developers.google.com/adwords/api/docs/appendix/reports#age-range
  reports 
have been added, 
 Keywordlesshttps://developers.google.com/adwords/api/docs/appendix/reports#keywordless-query
 and Campaign Location 
 Targethttps://developers.google.com/adwords/api/docs/appendix/reports#campaign-location-target
  reports 
are now available to all users. We’ve also included automatic placements 
into Placement Performance 
 reporthttps://developers.google.com/adwords/api/docs/appendix/reports#placement
.
- *Five AdWords API features are now out of Beta.* The following 
features are now available to all API users: Dynamic Search 
 Adshttp://adwords.blogspot.com/2012/10/boost-your-results-with-dynamic-search.html
, Display Criteria bid 
 adjustmentshttps://support.google.com/adwords/editor/answer/56365
, Flexible (shared) Bidding 
 Strategieshttp://adwords.blogspot.com/2013/05/new-flexible-bid-strategies-available.html
, Ad Group Level 
 Feedshttps://developers.google.com/adwords/api/docs/guides/feed-services
 and Location bid 
 adjustmentshttp://adwords.blogspot.com/2013/05/location-bid-adjustment-best-practices.html
.
- *Stat fields are now only available in reports.* From this version 
and onwards the API will not return stats data via services anymore. 

 Reportinghttps://developers.google.com/adwords/api/docs/guides/reporting 
 can 
be used instead.
- *Creating individual budgets.* AdWords API v201309 now allows you 
to create individual (non-shared) 
 budgetshttps://developers.google.com/adwords/api/docs/guides/shared-budgets
  that 
can only be used by one campaign and are not displayed in the AdWords 
 User 
Interface.


 A complete list of changes is available in the release 
 noteshttps://developers.google.com/adwords/api/docs/reference/. 
 Note, as previously 
 describedhttp://googleadsdeveloper.blogspot.com/2013/09/announcing-sunset-of-clientlogin-in.html,
  
 AdWords API v201309 is *the last version to support the ClientLogin* 
 authorization 
 method. 

 If you are still using v201302 of the AdWords API, please note that it is 
 being 
 sunset https://developers.google.com/adwords/api/docs/sunset-dates on 
 November 8, 2013. We encourage you to skip v201306 and migrate straight to 
 v201309. If you’re using v201306, be aware it is now

Re: Targeting idea for RelatedToUrlSearchParameter returns the same keywords for different pages on a domain

2013-10-08 Thread Danial Klimkin
Hello KG,


Yes, this is the expected behavior. I've logged Display Planner support as 
a feature request and it will be considered for the future API versions.


-Danial, AdWords API Team.


On Tuesday, October 8, 2013 12:37:18 PM UTC+4, KG wrote:

 I see. That explains it. I just tried Keyword Planner and see the same 
 results.

 Could you please tell me if it's expected for different URLs on the name 
 domain to return the same set of keywords?

 Basically, with the Display Planner, the resulting keywords differ based 
 on the theme of the page (as shown in my example).
 But with the Keyword Planner, I get the same set of keywords for different 
 URLs on a domain.

 It differs for pages/sections of very large websites, but for smaller 
 sites I get the same keywords.

 It most definitely used to be different in the past.I remember because I 
 used to rely on this functionality during my keyword research, and it was 
 extremely helpful.

 Could you please confirm that this (the same keywords for different pages) 
 is the expected behavior and is not likely to change in the (near) future?

 Don't get me wrong, I'm not complaining. I just want to try and plan out 
 how to use this part of the API going forward. Given the current 
 information.

 And of course, I'll wait for the possibility of the addition of the 
 Display Planner to the API.

 Thanks for the info. I appreciate it.


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Announcing v201309 of AdWords API

2013-10-08 Thread Danial Klimkin
Hello Chirag,


We don't plan to make any changes in between versions at the moment.


-Danial, AdWords API Team.


On Tuesday, October 8, 2013 3:49:32 PM UTC+4, Chirag wrote:

 Hello,

 Will call metrics data available in coming weeks from beta?


 On Tuesday, 8 October 2013 17:09:10 UTC+5:30, Danial Klimkin wrote:

 Hello Peter,


 To confirm, v201306 sunset is scheduled for end of Mar 2014, see:

   https://developers.google.com/adwords/api/docs/sunset-dates

 All client libraries were already released (the same day as the 
 announcement) and should be supporting v201309. I'll check with the DotNet 
 library owner to confirm on this case but I can see v201309 support is in 
 place for the downloadable version here:

   https://code.google.com/p/google-api-adwords-dotnet/downloads/list


 -Danial, AdWords API Team.


 On Tuesday, October 8, 2013 2:09:30 AM UTC+4, CSPeter wrote:

 Given the somewhat small window between now and the sunset of v201306, 
 can we be provided with expected release dates for the client libraries?  

 Also, the change log for the dotnet client library 16.2.0 claims support 
 for v201309.  I pulled 16.2.0 from NuGet, but it does not have v201309 
 support.  It also claims removal of v201209, but that also still exists in 
 16.2.0 on nuget.  The release notes I refer to are here:

 https://code.google.com/p/google-api-adwords-dotnet/source/browse/ChangeLog

 Thank you,
 Peter

 On Thursday, October 3, 2013 8:57:42 PM UTC-4, Danial Klimkin wrote:

 Today we are releasing the AdWords API v201309. This latest release 
 introduces offline conversion import, adds new reports and also makes 
 several Beta features available to all API users. We've also reworked the 
 AdWords 
 API Developers site https://developers.google.com/adwords/api/ making 
 it more friendly and easier to navigate. Take a look and let us know what 
 you think!

 *v201309 Highlights:*

- *Offline conversions import.* This previously 
 announcedhttp://adwords.blogspot.ru/2013/09/measure-optimize-for-offline-sales-with.html
  AdWords 
feature is now also available via the API with a new 

 OfflineConversionFeedServicehttp://developers.google.com/adwords/api/docs/reference/v201309/OfflineConversionFeedService
 and Upload Conversion 
 trackerhttp://developers.google.com/adwords/api/docs/reference/v201309/ConversionTrackerService.UploadConversion
.
- *Configurable Conversion Tracker lookback window.* New Conversion 

 trackerhttp://developers.google.com/adwords/api/docs/reference/v201309/ConversionTrackerService.ConversionTracker#ctcLookbackWindow
  field 
allows to configure click-through conversion lookback 
 windowhttp://adwords.blogspot.com/2013/09/customize-conversion-window.html
  for 
AdWords and Offline conversion trackers.
- *Reporting updates.* Gender 
 Performancehttps://developers.google.com/adwords/api/docs/appendix/reports#gender
 and Age Range 
 Performancehttps://developers.google.com/adwords/api/docs/appendix/reports#age-range
  reports 
have been added, 
 Keywordlesshttps://developers.google.com/adwords/api/docs/appendix/reports#keywordless-query
 and Campaign Location 
 Targethttps://developers.google.com/adwords/api/docs/appendix/reports#campaign-location-target
  reports 
are now available to all users. We’ve also included automatic 
 placements 
into Placement Performance 
 reporthttps://developers.google.com/adwords/api/docs/appendix/reports#placement
.
- *Five AdWords API features are now out of Beta.* The following 
features are now available to all API users: Dynamic Search 
 Adshttp://adwords.blogspot.com/2012/10/boost-your-results-with-dynamic-search.html
, Display Criteria bid 
 adjustmentshttps://support.google.com/adwords/editor/answer/56365
, Flexible (shared) Bidding 
 Strategieshttp://adwords.blogspot.com/2013/05/new-flexible-bid-strategies-available.html
, Ad Group Level 
 Feedshttps://developers.google.com/adwords/api/docs/guides/feed-services
 and Location bid 
 adjustmentshttp://adwords.blogspot.com/2013/05/location-bid-adjustment-best-practices.html
.
- *Stat fields are now only available in reports.* From this 
version and onwards the API will not return stats data via services 
anymore. 
 Reportinghttps://developers.google.com/adwords/api/docs/guides/reporting 
 can 
be used instead.
- *Creating individual budgets.* AdWords API v201309 now allows you 
to create individual (non-shared) 
 budgetshttps://developers.google.com/adwords/api/docs/guides/shared-budgets
  that 
can only be used by one campaign and are not displayed in the AdWords 
 User 
Interface.


 A complete list of changes is available in the release 
 noteshttps://developers.google.com/adwords/api/docs/reference/. 
 Note, as previously 
 describedhttp://googleadsdeveloper.blogspot.com/2013/09/announcing-sunset-of-clientlogin-in.html,
  
 AdWords API v201309 is *the last version to support

Re: Is python2.7 mandatory for adwords v201306

2013-10-08 Thread Danial Klimkin
Hello Yogeetha,


The library supports Python 2.4 and later (2.x only). Python 2.6 is 
supported.


-Danial, AdWords API Team.


On Monday, October 7, 2013 8:22:28 AM UTC+4, Yogeetha Sundaram wrote:

 For migrating to adwords v201306 / v201309 is python 2.7 mandatory? Will 
 python 2.6 not work?


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: How to implicitly create an Individual Budget when creating the Campaign in v201309?

2013-10-08 Thread Danial Klimkin
Hello HK,


As of v201309 you can create individual budgets. Still, you need to use 
BudgetService for them, get an ID and use it with the CampaignService.

Individual budget can be created by sending IsExplicitlyShared value set to 
false.


-Danial, AdWords API Team.


On Saturday, October 5, 2013 2:06:16 AM UTC+4, HK wrote:

 Hi guys,

 I'm in the process of upgrading from v201302 to v201309 and I'm getting 
 the error Required\r\nField: .operand.budget.budgetId when attempting to 
 create a new campaign with an individual budget. I realize that I could 
 probably just first create a budget object and then pass along the budgetid 
 when creating the campaign, but the Shared Budgets 
 dochttps://developers.google.com/adwords/api/docs/guides/shared-budgets#whatstates
  the following:

 When creating new Campaigns using the AdWords UI or the AdWords API 
 v201309, *you have the option to implicitly create an Individual Budget 
 when creating the Campaign* or to assign it to a Shared Budget.

 So when creating a new campaign, how do I implicitly create an individual 
 budget? I've tried setting the budgetid to 0, not including it, setting 
 isExplicitlyShared to false but it still fails with the same error.

 Any help appreciated.

 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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Negative Keyword Not Added

2013-10-08 Thread Danial Klimkin
Hello,


Can you please send us the XML code of the request and full server 
response? Please make sure to exclude sensitive details such as AuthToken 
or developer token.


-Danial, AdWords API Team.


On Thursday, October 3, 2013 12:21:26 AM UTC+4, goingdev wrote:

 Using the API (201306) I'm trying to upload a phrase, exact and broad 
 (with modifier) keyword to a campaign and an adgroup in a different 
 campaign.

 All three keywords uploaded successfully to the adgroup but only the 
 phrase and exact keyword was uploaded to the campaign.

 Here's the piece of code that uploads the negative keyword to the campaign:

 public static CampaignCriterionOperation 
 GetCampaignNegativeKeywordOperation(string keywordText, 
 Google.Api.Ads.AdWords.v201306.KeywordMatchType keywordMatchType, long 
 campaignID, Google.Api.Ads.AdWords.v201306.Operator operat)

 {

 Keyword keyword = new Keyword

 {

 text = keywordText,

 matchType = keywordMatchType

 };

 NegativeCampaignCriterion criterion = new 
 NegativeCampaignCriterion

 {

 campaignId = campaignID,

 criterion = keyword

 };

 CampaignCriterionOperation operation = new 
 CampaignCriterionOperation

 {

 @operator = operat,

 operand = criterion

 };


 return operation;

 }



 I can't seem to figure out where I'm going wrong. Any help is appreciated. 


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: QuotaCheckError.ACCOUNT_INACTIVE

2013-10-03 Thread Danial Klimkin
Hello,


First of all, please never send your authorization details or developer 
token to the public mailing list. Please make sure to reset your token in 
the AdWords API Center.

As per the question, you need an approved token to access any service for a 
production account.


-Danial, AdWords API Team.


On Wednesday, October 2, 2013 3:08:05 PM UTC+4, ma...@mail.com wrote:

 Hi Danial,

 I have the same problem but with my account. I make it works with a test 
 account, even if it download be a dummy datas (im trying to obtain the 
 suggested keywords)

 I can obtain real data with a production MCC (even if it is still under 
 review) ? My production id is *827-371-9238* token is 
 tMhiBYdxUm4Egu6IqSYb4w

 Can you help me?

 Il giorno mercoledì 2 ottobre 2013 01:02:12 UTC+2, Danial Klimkin ha 
 scritto:

 Hi,


 It looks like you are using a developer token from test mcc account. 
 Please use one from a production MCC (even if it is still under review).


 -Danial, AdWords API Team.


 On Wednesday, October 2, 2013 1:38:35 AM UTC+4, testad...@gmail.comwrote:

 Hi,

 Im using my test account [451-157-2126] to try API but i cannot use it, 
 always having the same error:  Uncaught SoapFault exception: 
 [soap:Server] [QuotaCheckError.ACCOUNT_INACTIVE @ ; trigger:'null']



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Announcing v201309 of AdWords API

2013-10-03 Thread Danial Klimkin
Today we are releasing the AdWords API v201309. This latest release 
introduces offline conversion import, adds new reports and also makes 
several Beta features available to all API users. We've also reworked the 
AdWords 
API Developers site https://developers.google.com/adwords/api/ making it 
more friendly and easier to navigate. Take a look and let us know what you 
think!

*v201309 Highlights:*

   - *Offline conversions import.* This previously 
announcedhttp://adwords.blogspot.ru/2013/09/measure-optimize-for-offline-sales-with.html
 AdWords 
   feature is now also available via the API with a new 
   
OfflineConversionFeedServicehttp://developers.google.com/adwords/api/docs/reference/v201309/OfflineConversionFeedService
and Upload Conversion 
trackerhttp://developers.google.com/adwords/api/docs/reference/v201309/ConversionTrackerService.UploadConversion
   .
   - *Configurable Conversion Tracker lookback window.* New Conversion 
   
trackerhttp://developers.google.com/adwords/api/docs/reference/v201309/ConversionTrackerService.ConversionTracker#ctcLookbackWindow
 field 
   allows to configure click-through conversion lookback 
windowhttp://adwords.blogspot.com/2013/09/customize-conversion-window.html 
for 
   AdWords and Offline conversion trackers.
   - *Reporting updates.* Gender 
Performancehttps://developers.google.com/adwords/api/docs/appendix/reports#gender
and Age Range 
Performancehttps://developers.google.com/adwords/api/docs/appendix/reports#age-range
 reports 
   have been added, 
Keywordlesshttps://developers.google.com/adwords/api/docs/appendix/reports#keywordless-query
and Campaign Location 
Targethttps://developers.google.com/adwords/api/docs/appendix/reports#campaign-location-target
 reports 
   are now available to all users. We’ve also included automatic placements 
   into Placement Performance 
reporthttps://developers.google.com/adwords/api/docs/appendix/reports#placement
   .
   - *Five AdWords API features are now out of Beta.* The following 
   features are now available to all API users: Dynamic Search 
Adshttp://adwords.blogspot.com/2012/10/boost-your-results-with-dynamic-search.html
   , Display Criteria bid 
adjustmentshttps://support.google.com/adwords/editor/answer/56365
   , Flexible (shared) Bidding 
Strategieshttp://adwords.blogspot.com/2013/05/new-flexible-bid-strategies-available.html
   , Ad Group Level 
Feedshttps://developers.google.com/adwords/api/docs/guides/feed-services
and Location bid 
adjustmentshttp://adwords.blogspot.com/2013/05/location-bid-adjustment-best-practices.html
   .
   - *Stat fields are now only available in reports.* From this version and 
   onwards the API will not return stats data via services anymore. 
   Reportinghttps://developers.google.com/adwords/api/docs/guides/reporting 
can 
   be used instead.
   - *Creating individual budgets.* AdWords API v201309 now allows you to 
   create individual (non-shared) 
budgetshttps://developers.google.com/adwords/api/docs/guides/shared-budgets 
that 
   can only be used by one campaign and are not displayed in the AdWords User 
   Interface.


A complete list of changes is available in the release 
noteshttps://developers.google.com/adwords/api/docs/reference/. 
Note, as previously 
describedhttp://googleadsdeveloper.blogspot.com/2013/09/announcing-sunset-of-clientlogin-in.html,
 
AdWords API v201309 is *the last version to support the ClientLogin* 
authorization 
method. 

If you are still using v201302 of the AdWords API, please note that it is being 
sunset https://developers.google.com/adwords/api/docs/sunset-dates on 
November 8, 2013. We encourage you to skip v201306 and migrate straight to 
v201309. If you’re using v201306, be aware it is now marked deprecated and 
will be sunset on Mar 31st, 2014. With this release, we have also updated 
the Required Minimum Functionality 
documenthttps://developers.google.com/adwords/api/docs/requirements to 
include some of the newly added features that are now required in 
third-party tools.

As with every new version of the AdWords API, we encourage you to carefully 
review all changes in the release 
noteshttps://developers.google.com/adwords/api/docs/reference/ and 
the v201309 migration 
guidehttp://developers.google.com/adwords/api/docs/guides/migration-v201309. 
The updated client 
librarieshttps://developers.google.com/adwords/api/docs/clientlibraries and 
code examples will be published shortly. If you have any questions or need 
help with migration, please post on the 
forumhttps://developers.google.com/adwords/api/community/ or 
the Ads Developers Plus Page https://plus.google.com/+GoogleAdsDevelopers.

- The 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

Re: RMF C.115: Creating Campaigns with Conversion Optimizer bidding scheme

2013-10-02 Thread Danial Klimkin
Hello Oliver,


As a technical team we can not comment on legal or RMF questions. I'll 
highlight it internally with a relevant team but I can't promise a 
follow-up.


-Danial, AdWords API Team.


On Wednesday, October 2, 2013 11:06:37 AM UTC+4, oseemann wrote:

 Hi Jason,

 thanks for your input. What you say makes sense and it matches our 
 assessment of the situation.

 I'm hoping that someone from the developer relations team can acknowledge 
 the conflict between RMF and API. Interpretations are always subjective and 
 it'd be nice to have an official statement.

 Oliver

 Am Sonntag, 29. September 2013 23:39:28 UTC+2 schrieb Jason Stedman:

 You cannot create a campaign with Conversion Optimizer bidding scheme, as 
 you said it must become eligible first. I interpret this RMF requirement to 
 mean you must support converting from another bidding scheme to Conversion 
 Optimizer once a campaign becomes eligible. The best explanation of how 
 this is to be done is this post here : 


 https://groups.google.com/forum/#!searchin/adwords-api/conversion$20optimizer$20/adwords-api/gJhz7GwWpf0/Ies4ID6PCysJ

 You should check with the policy team to confirm that the above 
 assumption is correct before proceeding, but it is really the only way I 
 can make sense of it. However, I do not work for Google and cannot confirm 
 this myself. 

 Hope this helps.

 Jason

 On Thursday, September 26, 2013 4:10:32 PM UTC-4, oseemann wrote:

 Hi!

 The Required Minimum Functionality (v.020613) states that supporting the 
 Conversion Optimizer bidding scheme is required for campaign creation (item 
 number C.115).

 However, the API does not allow creating campaigns with the Conversion 
 Optimizer bidding scheme. It will fail with 
 CANNOT_CREATE_CAMPAIGN_WITH_CONVERSION_OPTIMIZER. Also, it seems 
 campaigns need to become eligible for that bidding scheme first (i.e. 
 accumulate conversions) before it can be switched.
 It appears that RMF and API implementation are in conflict. Can you give 
 advise on how to solve this?
 (I already asked the policy team, they directed me to this forum).


 Best regards,
 Oliver



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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Php скрипт автоматической проверки работы рекламной кампании.

2013-10-01 Thread Danial Klimkin
Игорь, добрый день,


Для проверки доставки решения нет. С помощью AdWords API можно получить 
статус всех объектов (включена ли компания, подтверждено объявление и т.п.).


-Даниил, команда AdWords API.


On Friday, September 27, 2013 2:47:39 PM UTC+4, Igor Kolesnik wrote:

 Хотелось бы узнать есть ли решения для автоматической проверки скриптом 
 работает ли реклама в данный момент или нет. Чтобы не заходить постоянно в 
 диагностику объявлений и не проверять вручную.


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Re: Error while getting Detination URL report

2013-10-01 Thread Danial Klimkin
Hello Shobha,


Do you still experience the issue describe below?


-Danial, AdWords API Team.


On Thursday, September 26, 2013 3:40:47 PM UTC+4, shobha.p...@gmail.com 
wrote:

 Hi,

 I am trying to fetch Destination URL report for a client using Adwords APi 
 v201302 as well as from the 'Client Reporting' section in Adwords. But I am 
 not getting the report.

 I executed the report for a duration of 2013-07-01 to 2013-09-24 using 
 both the methods. Sometimes, I get error 
 ERROR_GETTING_RESPONSE_FROM_BACKEND and sometime no error is returned and 
 no data is received from API.

 Here, is the code snippet for the same :
 $params['reportFields'] = array('CampaignId', 'EffectiveDestinationUrl', 
 'Impressions');// edit
 $params['customerId'] = $adwordsCustomerId;
 $params['reportName'] = 'Destination URL Report';
 $params['startDate'] = '2013-09-01';//edit
 $params['endDate'] = '2013-07-01';
 $params['dateRangeType'] = 'CUSTOM_DATE';
 $params['reportType'] = 'DESTINATION_URL_REPORT';
 $params['campaignStatusValue'] = array('ACTIVE','PAUSED');
 $params['downloadFormat'] = 'GZIPPED_CSV';
 $params['includeZeroImpressions'] = TRUE;
 $params['getFileName'] = TRUE;
 $d = $adwords-getReport($params);

 Can you please let me know if there is some issue with the Destination URL 
 report? If not what can be the reason behind this?

 Thanks,
 Shobha


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

--- 
You received this message because you are subscribed to the Google Groups 
AdWords API Forum group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


<    5   6   7   8   9   10   11   12   13   14   >