Step 2: Select Website content and enter URL in the text box
Step 3: Get the text file from google.
I do not want interface to be involved, my main target is file.
Can some one help ?
AdWords API Advisor
unread,
Jul 9, 2008, 1:35:37 PM7/9/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Hello Sikunj,
If you're looking to write a custom program to perform this
functionality, it's definitely something you can do with the AdWords
API. Take a look at the getKeywordsFromSite() method in particular
after getting familiar with the rest of the standard documentation:
Our sample code section has demos for various languages for using the
KeywordToolService, and should be easily adaptable for the
getKeywordFromSite() method.
> Hello Sikunj,
>
> If you're looking to write a custom program to perform this
> functionality, it's definitely something you can do with the AdWords
> API. Take a look at the getKeywordsFromSite() method in particular
> after getting familiar with the rest of the standard documentation:
>
>
> Our sample code section has demos for various languages for using the
> KeywordToolService, and should be easily adaptable for the
> getKeywordFromSite() method.
>
> http://www.google.com/apis/adwords/samplecode.html >
> Cheers,
> -Jeff Posnick, AdWords API Team
>
> On Jul 9, 1:30 am, Sikunj <sik...@gmail.com> wrote:
>
>
>
> > My task involves:
>
> > Making something that does the following operation in one click:
>
> > Step 1: Go to:https://adwords.google.com/select/KeywordToolExternal >
> > Step 2: Select Website content and enter URL in the text box
>
> > Step 3: Get the text file from google.
>
> > I do not want interface to be involved, my main target is file.
>
> > Can some one help ?- Hide quoted text -
>
> - Show quoted text -
Sikunj
unread,
Jul 14, 2008, 8:17:40 AM7/14/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
> Hello Sikunj,
>
> If you're looking to write a custom program to perform this
> functionality, it's definitely something you can do with the AdWords
> API. Take a look at the getKeywordsFromSite() method in particular
> after getting familiar with the rest of the standard documentation:
>
>
> Our sample code section has demos for various languages for using the
> KeywordToolService, and should be easily adaptable for the
> getKeywordFromSite() method.
>
> http://www.google.com/apis/adwords/samplecode.html >
> Cheers,
> -Jeff Posnick, AdWords API Team
>
> On Jul 9, 1:30 am, Sikunj <sik...@gmail.com> wrote:
>
>
>
> > My task involves:
>
> > Making something that does the following operation in one click:
>
> > Step 1: Go to:https://adwords.google.com/select/KeywordToolExternal >
> > Step 2: Select Website content and enter URL in the text box
>
> > Step 3: Get the text file from google.
>
> > I do not want interface to be involved, my main target is file.
>
AdWords API Advisor
unread,
Jul 14, 2008, 12:02:01 PM7/14/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Hello Sikunj,
You'll have to write a program to make use of the AdWords API's
methods to retrieve this data. If you're stuck using classic ASP (not
ASP.NET) then you'd have to use a SOAP toolkit to generate the
bindings for our SOAP services, because we don't have a packaged COM
client library for the AdWords API. The relevant WSDL is
You can start developing against the Sandbox environment while you are
testing your code, but keep in mind that results for the
KeywordToolService in the Sandbox environment will be mocked out and
won't match the real results you'd get from the production
environment. See this page for more information about the Sandbox:
On Jul 14, 8:10 am, Sikunj <sik...@gmail.com> wrote:
> I have to implement things in classic ASP.
> So I am not sure what should be my steps ?
> Can you please elobarate things.
>
> For eg.
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
This is what I have thought for the implementation:
1. Find the list of key words from the URL :
Which is done by getKeywordsFromSite('http://
vfish.vfishdesigns.net/store/pc/viewPrd.asp?
idcategory=7&idproduct=242',false,'en','US')
2. For each keyword , we need to find the variation for it
Which is done as :
for each keyword
getKeywordVariations(keyword(i), false ,
'en' ,'US)
next
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Hello Sikunj,
Running getKeywordsFromSite() should give you a list of potential
keywords. You don't necessarily have to call getKeywordVariations() on
each of those potential keywords unless you're specifically looking
for additional keywords that are related to each of the results.
Cheers,
-Jeff Posnick, AdWords API Team
Sikunj
unread,
Sep 3, 2008, 6:03:41 AM9/3/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Yes, but if you look at my task it has to specifically find keywords
from my own site and then for each keyword have to find variations.
In that case my logic is perfect , correct ?
On Jul 15, 11:28 pm, AdWords API Advisor
AdWords API Advisor
unread,
Sep 3, 2008, 12:08:11 PM9/3/08
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to AdWords API Forum
Hello Sikunj,
Yes, if that's what you're trying to accomplish then calling
getKeywordsFromSite() and then getKeywordVariations() using the
results would make sense.