Getting global or local search volume of a keyword via API

2011-01-31 Thread Bikram Choudhury The SEO & PHP Developer
Hi, I am very new to Adwords API. My target is to "Get global or local search volume of a keyword via API". So my current project is: A textbox in a page, a submit button. In textbox you can type any keyword and then you will get results after submitting the button. Also I have in mind to use Y

Re: Getting global or local search volume of a keyword via API

2011-02-02 Thread AdWords API Advisor
Hi Bikram, The TargetingIdeaService can be used to retrieve the search volume of keywords. Use it in STATS mode and you can batch up to 2000 keywords per request. http://code.google.com/apis/adwords/docs/reference/latest/TargetingIdeaService.html Best, - Eric Koleda, AdWords API Team On Jan

Re: Getting global or local search volume of a keyword via API

2011-10-14 Thread santhosh kumar
Hi Bikram, I am also very new to Adwords API. My target is to "Get global or local search result of a keyword via API". So my current project is: A textbox in a page, a submit button. In textbox you can type any keyword and then you will get results after submitting the button. How to

Re: Getting global or local search volume of a keyword via API

2011-10-14 Thread santhosh kumar
Hi Bikram, I am also very new to Adwords API. My target is to "Get global or local search result of a keyword via API". So my current project is: A textbox in a page, a submit button. In textbox you can type any keyword and then you will get results after submitting the button. How to

Re: Getting global or local search volume of a keyword via API

2011-10-17 Thread Anash P. Oommen
Hi Santhosh, See http://code.google.com/apis/adwords/docs/sandbox.html for details on how to use the sandbox. Cheers, Anash P. Oommen, AdWords API Advisor. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://g

Re: Getting global or local search volume of a keyword via API

2011-10-17 Thread santhosh kumar
Hi Anish, Thanks for your response. How to generate Auth Token to access the Sandbox URL(POC environment), In place of developer token iam passing login++currency_code (….@gmail.com++USD is it correct format?) . Please provide an java example code to work with sandbox URL in testing (POC purpos

Re: Getting global or local search volume of a keyword via API

2011-10-17 Thread santhosh kumar
Hi Anash, While working with Sandbox Url(POC Environment) iam getting below msg. javax.xml.rpc.ServiceException: Could not get ClientLogin token for user: Auth token could not be retrieved because of IOException: www.google.com at com.google.api.adwords.lib.AdWordsVersion $AdWordsVersionV2

Re: Getting global or local search volume of a keyword via API

2011-10-20 Thread Anash P. Oommen
Hi Santhosh, Since you are using AdWords API Java library, the issue of generating ClientLogin token is no longer relevant; the library will take care of you. As for IOException, looks like the library has some issue reaching https://www.google.com/accounts/ClientLogin. Are you still facing is

Re: Getting global or local search volume of a keyword via API

2011-10-21 Thread santhosh kumar
Hi Anash, I'm using the AdWords Sandbox API for the first time. I'm using the java client library(V201101) to access the API. When I tried calling the TargetingIdeaService service, I'm getting the AuthenticationError.NOT_ADS_USER error. Error: AxisFault faultCode: {http://schemas.xmlsoap.org/so

Re: Getting global or local search volume of a keyword via API

2011-10-24 Thread David Torres
Hi Santhosh, Could you post the snippet of your code that is throwing the error? I'll be glad to look at it and point out any issues. Best, -David Torres - AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blo

Re: Getting global or local search volume of a keyword via API

2011-10-24 Thread santhosh kumar
Hi David, The below code iam using. public class GetRelatedKeywords { public static void main(String[] args) { try { // Log SOAP XML request and response. AdWordsServiceLogger.log(); // Get AdWordsUser from "~/adwords.properties". AdWordsUser user = new AdWordsUser

Re: Getting global or local search volume of a keyword via API

2011-10-26 Thread David Torres
Hi Santhosh, Your code seems to be fine, are you behind a firewall or a proxy that might be preventing from you to access the auth token endpoint? Judging from the error an IOException means a communication error. Best, -David -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us