Re: TokenResponseException while connectiong to Google adwords API using service account

2014-11-28 Thread Danial Klimkin
Hello,


First of all, is there any strong reason to use service account? It is only 
available for Google App domains, do you use one?


-Danial, AdWords API Team.


On Thursday, November 27, 2014 2:48:35 PM UTC+3, edduenas...@gmail.com 
wrote:
>
> We tried to create a code to obtain Google Adwords API connection using 
> service account but we are getting the following errors.
>
>  
>
>  
>
> Caused by: *com.google.api.client.auth.oauth2.TokenResponseException*: 
> 400 Bad Request
>
> {
>
>   "error" : "invalid_grant"
>
> }
>
>at com.google.api.client.auth.oauth2.TokenResponseException.from(
> *TokenResponseException.java:105*)
>
>at com.google.api.client.auth.oauth2.TokenRequest.executeUnparsed(
> *TokenRequest.java:287*)
>
>at com.google.api.client.auth.oauth2.TokenRequest.execute(
> *TokenRequest.java:307*)
>
>at 
> com.google.api.client.googleapis.auth.oauth2.GoogleCredential.executeRefreshToken(
> *GoogleCredential.java:384*)
>
>at com.google.api.client.auth.oauth2.Credential.refreshToken(
> *Credential.java:489*)
>
>at com.google.api.ads.common.lib.auth.OAuth2Helper.callRefreshToken(
> *OAuth2Helper.java:70*)
>
>at 
> com.google.api.ads.common.lib.auth.OAuth2Helper.refreshCredential(
> *OAuth2Helper.java:56*)
>
>at 
> com.google.api.ads.common.lib.auth.AuthorizationHeaderProvider.getOAuth2Header(
> *AuthorizationHeaderProvider.java:102*)
>
>  
>
>  
>
>  
>
> *The code for google adwords API connection using service account is :*
>
>  
>
>  
>
>  
>
> GoogleCredential serviceAccountCredential = *new* 
> GoogleCredential.Builder()
>
> .setTransport(*new* NetHttpTransport.Builder().setProxy(proxy).build())
>
> .setJsonFactory(*new* JacksonFactory())
>
> .setServiceAccountId(".apps.googleusercontent.com")
>
> .setServiceAccountScopes(Collections.*singleton*("
> https://adwords.google.com/api/adwords";))
>
> .setServiceAccountPrivateKeyFromP12File(keyFile)
>
> .setServiceAccountUser("@gmail.com")
>
> .build();
>  
> *return* serviceAccountCredential;
>
>  
>  
> AdWordsSession adSession = *new* AdWordsSession.Builder()
>
> .fromFile()
>
> .withOAuth2Credential(credential)
>  
> .build();
>
>  
>
>  
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/8b9b9164-cdfc-46af-ba03-fc9c2dcf6450%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: What can cause this error CANNOT_ATTACH_BIDDING_STRATEGY_TO_CAMPAIGN

2014-11-28 Thread Danial Klimkin
Hello Dominic,


Could you please send us the XML code you are sending in the request? 
Please make sure to remove sensitive details such as developer token and 
authorization details.


-Danial, AdWords API Team.


On Friday, November 28, 2014 6:15:22 AM UTC+3, Dominic Hofilena wrote:
>
> Hi,
>
> Im getting this error when creating a new campaign
>
> CANNOT_ATTACH_BIDDING_STRATEGY_TO_CAMPAIGN @ 
> operations[0].operand.biddingStrategyConfiguration.biddingStrategyType; 
> trigger:'BUDGET_OPTIMIZER'
>
> What could cause this error? My other bidding schemes work. like 
> CONVERSION_OPTIMIZER and MANUAL_CPC. I'm confused with this one
>
> Im attaching the code I'm using.
>
> Thanks in Advance
>
> Dominic
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f683d536-8238-4b3d-b161-20588dece0df%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: How can I get category ID from Adwords API

2014-11-28 Thread Danial Klimkin
Hello Ravindra,


You can use ConstantDataService:

  
https://developers.google.com/adwords/api/docs/reference/v201409/ConstantDataService#getVerticalCriterion

or download a CSV from the docs site and integrate into your application:

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


-Danial, AdWords API Team.


On Friday, November 28, 2014 1:29:19 PM UTC+3, Ravindra Naik wrote:
>
> Hi,
>
> I am trying to use getKeywordIdeas.cs file present in the example folder 
> of client libraries. I am using Adwords Service v201409. Can you suggest me 
> a function in Adwords API which will take input parameter like FOOD, Bakery 
> or Jewellery as category and return Category ID of that category. This is 
> little urgent so can you revert back to me asap.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ab85a5d8-36ed-4e1b-86e8-3830d4b2ca22%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: TrafficEstimatorService in Google Sheets

2014-11-28 Thread Danial Klimkin
Hello Eugenio,


Technically, it's possible to obtain data from the API and upload it to a 
google docs sheet. Though, it wouldn't be easy and it would require decent 
amount of development effort.


-Danial, AdWords API Team.

On Thursday, November 27, 2014 8:10:44 PM UTC+3, Eugenio T. wrote:
>
> Hi,
> Just was wondering: is it possible to integrate a script that uses 
> the TrafficEstimatorService of Google Adwords inside the google docs 
> spreadsheets? 
> In case could you please address me to the right place where to find the 
> info?
> Thanks !
> Eugenio
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/fff81513-e1c5-402c-8446-464dcb92a98b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: why I got a null report ?

2014-11-28 Thread Danial Klimkin
What is the report definition you are using? Which account do you ran 
report against?


-Danial, AdWords API Team.

On Thursday, November 27, 2014 1:02:18 PM UTC+3, 张君峰 wrote:
>
>
> 
>
>
> 
> The reason in the pictures.
>
> Can anyone help me?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/93190307-b916-4cb1-be49-9d0cf6bdd55a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: (502)Bad Gateway

2014-11-28 Thread Danial Klimkin
Hello Jai,


We don't see any other reports of similar issues. Please check your network 
connectivity / confirm with your ISP if there were any network issues.


-Danial, AdWords API Team.


On Thursday, November 27, 2014 6:39:23 PM UTC+3, jai wrote:
>
> Hi 
>
>From last two days iam  getting  (502)Bad Gateway error   while 
> creating adds .please find the below exception stack-trace . could you 
> please help me to resolve this error.
>   (502)Bad Gateway
> at 
> org.apache.axis.transport.http.HTTPSender.readFromSocket(HTTPSender.java:744)
> at 
> org.apache.axis.transport.http.HTTPSender.invoke(HTTPSender.java:144)
> at 
> org.apache.axis.strategies.InvocationStrategy.visit(InvocationStrategy.java:32)
> at org.apache.axis.SimpleChain.doVisiting(SimpleChain.java:118)
> at org.apache.axis.SimpleChain.invoke(SimpleChain.java:83)
> at org.apache.axis.client.AxisClient.invoke(AxisClient.java:165)
> at org.apache.axis.client.Call.invokeEngine(Call.java:2784)
> at org.apache.axis.client.Call.invoke(Call.java:2767)
> at org.apache.axis.client.Call.invoke(Call.java:2443)
> at org.apache.axis.client.Call.invoke(Call.java:2366)
> at org.apache.axis.client.Call.invoke(Call.java:1812)
> at 
> com.google.api.ads.adwords.axis.v201406.cm.AdGroupAdServiceSoapBindingStub.mutate(AdGroupAdServiceSoapBindingStub.java:1301)
> at sun.reflect.GeneratedMethodAccessor251.invoke(Unknown Source)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:622)
> at 
> com.google.api.ads.common.lib.soap.SoapClientHandler.invoke(SoapClientHandler.java:109)
> at 
> com.google.api.ads.common.lib.soap.axis.AxisHandler.invokeSoapCall(AxisHandler.java:213)
> at 
> com.google.api.ads.common.lib.soap.SoapServiceClient.callSoapClient(SoapServiceClient.java:64)
> at 
> com.google.api.ads.common.lib.soap.SoapServiceClient.invoke(SoapServiceClient.java:93)
> at com.sun.proxy.$Proxy18.mutate(Unknown Source)
> at com.adwords.service.UserService.createadds(UserService.java:1947)
> at com.adwords.service.UserService.createAdgroup(UserService.java:2273)
> at 
> com.adwords.service.UserService.createCampaign(UserService.java:1019)
> at 
> com.adwords.actions.CreateCampaignAction.createCampaign(CreateCampaignAction.java:28)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
> at java.lang.reflect.Method.invoke(Method.java:622)
> at 
> org.apache.struts.actions.DispatchAction.dispatchMethod(DispatchAction.java:274)
> at 
> org.apache.struts.actions.DispatchAction.execute(DispatchAction.java:194)
> at 
> org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:419)
> at 
> org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:224)
> at 
> org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
> at 
> org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:643)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:723)
> at 
> org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
> at 
> org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
> at 
> org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:233)
> at 
> org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
> at 
> org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
> at 
> org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)
> at 
> org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
> at 
> org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:293)
> at 
> org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:861)
> at 
> org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:606)
> at 
> org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:489)
> at java.lang.Thread.run(Thread.java:701)
>
>
>
> Thanks,
> Jai
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.c

Re: Can't create MCC test account

2014-11-28 Thread robot
I tried with 3 different browsers (Chrome, Firefox, IE), removed cookies, 
incognito, etc. Nothing works. The browser refreshes the page every 3 
seconds.

People from Adwords Call center said they can't help me because this is a 
feature for developers.

El viernes, 28 de noviembre de 2014 09:54:20 UTC+1, ro...@rocketroi.com 
escribió:
>
> I'm trying to create a new MCC test account with the link on doc. After 
> filling the form and click to "create test account", the page start 
> refreshing and never stops.
>
> I called to adwords assistant but they said is a problem due to changes on 
> invoicing process (now is mandatory) and seams it's not implemented in test 
> account process.
>
> Any Idea how can I create the account?
>
> Thank you,
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1a108f9b-260e-4093-946f-211574499f21%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can't create MCC test account

2014-11-28 Thread Danial Klimkin
Hello,


Could you please try logging off from any account, clearing cookies and 
repeating the process?

The process has changed but it should be functional now.


-Danial, AdWords API Team.


On Friday, November 28, 2014 11:54:20 AM UTC+3, ro...@rocketroi.com wrote:
>
> I'm trying to create a new MCC test account with the link on doc. After 
> filling the form and click to "create test account", the page start 
> refreshing and never stops.
>
> I called to adwords assistant but they said is a problem due to changes on 
> invoicing process (now is mandatory) and seams it's not implemented in test 
> account process.
>
> Any Idea how can I create the account?
>
> Thank you,
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/33be55b4-765b-4d8e-9352-3f2e7442bf7b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Roadmap for Upgraded URLs

2014-11-28 Thread Danial Klimkin
Hello Danilo,


I can't comment on the timeline but Upgraded URLs will definitely be 
supported outside of the API.


-Danial, AdWords API Team.


On Friday, November 28, 2014 2:11:13 PM UTC+3, Danilo B. wrote:
>
> Hi all
>
> Does someone know if there are plans to integrate the upgraded URLs into 
> the regular AdWords products (editor & webinterface) soonish?
>
> https://developers.google.com/adwords/api/docs/guides/upgraded-urls
> http://www.ppc-epiphany.com/2014/07/16/google-hints-at-upgraded-urls/
>
> Cheers,
> Danilo
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d1beb484-694d-4e58-b291-ecc00a6b90fc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: setting a budget and enhanced CPC for campaings in v201409

2014-11-28 Thread András Révai
Hi Danial,

OK, thanks.

András

2014. november 28., péntek 12:00:07 UTC+1 időpontban Danial Klimkin a 
következőt írta:
>
> Hello András,
>
>
> First of all, Type and Scheme fields need to match, so approach (2) is not 
> valid. You can actually send of of these two to specify the type.
>
> It looks like this bidding scheme is not available for individual 
> (unshared) strategies, please use a shared one instead. There is no 
> downside of that -- you don't have to share a shareable strategy but can 
> create one for each case.
>
>
> -Danial, AdWords API Team.
>
>
>
> On Wednesday, November 26, 2014 3:47:50 PM UTC+3, András Révai wrote:
>>
>> Hi Danial,
>>
>> I replied but it looks like you did not receive my answer so I'm writing 
>> again.
>>
>> The non-shared budget settings works now, thanks.
>>
>> I still have a problem with Enhanced CPC though. I've tried it several 
>> ways but always get an error message. Can you give me an example you tested 
>> which actually works?
>>
>> Thanks,
>>
>> András
>>
>> 2014. november 24., hétfő 12:14:43 UTC+1 időpontban Danial Klimkin a 
>> következőt írta:
>>>
>>> Hello András,
>>>
>>>
>>> 1. Yes, just create a budget with isExplicitShared = false.
>>>
>>> 2. You need to use the EnhancedCpcBiddingScheme:
>>>
>>>   
>>> https://developers.google.com/adwords/api/docs/reference/v201409/BiddingStrategyService.EnhancedCpcBiddingScheme
>>>
>>>
>>> -Danial, AdWords API Team.
>>>
>>>
>>> On Sunday, November 23, 2014 6:10:56 PM UTC+3, András Révai wrote:

 Hi,

 #1 Is there a way to set a non-shared budget for a campaign in version 
 v201409?

 #2 How exactly do I set Enhanced CPC for a campaign?

 Thanks,

 András






-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/5f3f5c9b-663a-4f88-ae9c-e3da11d9e81c%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Roadmap for Upgraded URLs

2014-11-28 Thread Danilo B.
Hi all

Does someone know if there are plans to integrate the upgraded URLs into 
the regular AdWords products (editor & webinterface) soonish?

https://developers.google.com/adwords/api/docs/guides/upgraded-urls
http://www.ppc-epiphany.com/2014/07/16/google-hints-at-upgraded-urls/

Cheers,
Danilo

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/afebcb1f-0545-472e-9059-51df904294bc%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


TrafficEstimatorService in Google Sheets

2014-11-28 Thread Eugenio T.
Hi,
Just was wondering: is it possible to integrate a script that uses 
the TrafficEstimatorService of Google Adwords inside the google docs 
spreadsheets? 
In case could you please address me to the right place where to find the 
info?
Thanks !
Eugenio

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b7defd1b-8b64-4839-88e5-a80196ec2683%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: setting a budget and enhanced CPC for campaings in v201409

2014-11-28 Thread Danial Klimkin
Hello András,


First of all, Type and Scheme fields need to match, so approach (2) is not 
valid. You can actually send of of these two to specify the type.

It looks like this bidding scheme is not available for individual 
(unshared) strategies, please use a shared one instead. There is no 
downside of that -- you don't have to share a shareable strategy but can 
create one for each case.


-Danial, AdWords API Team.



On Wednesday, November 26, 2014 3:47:50 PM UTC+3, András Révai wrote:
>
> Hi Danial,
>
> I replied but it looks like you did not receive my answer so I'm writing 
> again.
>
> The non-shared budget settings works now, thanks.
>
> I still have a problem with Enhanced CPC though. I've tried it several 
> ways but always get an error message. Can you give me an example you tested 
> which actually works?
>
> Thanks,
>
> András
>
> 2014. november 24., hétfő 12:14:43 UTC+1 időpontban Danial Klimkin a 
> következőt írta:
>>
>> Hello András,
>>
>>
>> 1. Yes, just create a budget with isExplicitShared = false.
>>
>> 2. You need to use the EnhancedCpcBiddingScheme:
>>
>>   
>> https://developers.google.com/adwords/api/docs/reference/v201409/BiddingStrategyService.EnhancedCpcBiddingScheme
>>
>>
>> -Danial, AdWords API Team.
>>
>>
>> On Sunday, November 23, 2014 6:10:56 PM UTC+3, András Révai wrote:
>>>
>>> Hi,
>>>
>>> #1 Is there a way to set a non-shared budget for a campaign in version 
>>> v201409?
>>>
>>> #2 How exactly do I set Enhanced CPC for a campaign?
>>>
>>> Thanks,
>>>
>>> András
>>>
>>>
>>>
>>>
>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/177d2c50-9a63-4492-bbab-5dc05e0ae4f0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


How can I get category ID from Adwords API

2014-11-28 Thread Ravindra Naik
Hi,

I am trying to use getKeywordIdeas.cs file present in the example folder of 
client libraries. I am using Adwords Service v201409. Can you suggest me a 
function in Adwords API which will take input parameter like FOOD, Bakery 
or Jewellery as category and return Category ID of that category. This is 
little urgent so can you revert back to me asap.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/0f564019-f9ee-483e-bf77-c671c19d1be6%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can't create MCC test account

2014-11-28 Thread robot
I'm trying to create a new MCC test account with the link on doc. After 
filling the form and click to "create test account", the page start 
refreshing and never stops.

I called to adwords assistant but they said is a problem due to changes on 
invoicing process (now is mandatory) and seams it's not implemented in test 
account process.

Any Idea how can I create the account?

Thank you,

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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.
Visit this group at http://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/245a4ac7-51bd-4480-85e4-7fc778e26efa%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.