Re: How generate Keyword using Google API with asp.net 2008 and c#

2010-07-29 Thread Mukut
 Dear Sir,

I think I can't give the idea what I am want. But features are in this
link in google api

https://adwords.google.com/o/Targeting/Explorer?stylePrefOverride=2&__u=4468366968&__c=2545204608&ideaRequestType=KEYWORD_IDEAS#search.none

I have to imimplement this feature using asp.net 2008 and c# and
result come through Google API.

Please give me the instruction how can I get keywords list for giving
link in Website.
I am very hopefully waiting to your reply

Thanks & Regards,

Mukut Kandar.

On Jul 29, 6:49 pm, Mukut  wrote:
> Sir after many r & d and searching in Google Adword API I can't find
> any resource or helpline to generate keywords list by integrating
> Google API using asp.net 2008 and c#.
> I am use your google Adwords api latest version and run how to
> campigning as a sample website but no resource to Keyword generation
> integrating google api. It is very vital for my job. please help and
> give an guideline.
>
> Thanks in advance for help me.

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

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


Re: Problem with Python-AdWords-API using Proxy

2010-07-29 Thread Helmut Schierer
Thank you for your quick reply. Have opened an issue.

Cheers,
Helmut Schierer

On 29 Jul., 13:45, AdWords API Advisor 
wrote:
> HI Helmut,
>
> Seems you are correct, looks like AuthToken::Login is not using any
> proxies. 
> Seehttp://code.google.com/p/google-api-adwords-python-lib/source/browse/...
> for details.
>
> Could you open an issue 
> athttp://code.google.com/p/google-api-adwords-python-lib/issues/list
> so that we can track and fix the issue?
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Jul 29, 3:29 pm, Helmut Schierer  wrote:
>
> > Using Python AdWords-API Version v201003.
>
> > Wanted to connect through a proxy with using the proxy-param in
> > "GetCampaignService(url, version, proxy)"
>
> > Get error: [Errno socket error] (10061, 'Connection refused')
>
> > Looking at the Traceback I can see that the error occurs in
> > AuthToken.py in "__Login".
> > That method is called in WebService.py in CallMethod:
>
> > ...
> > #255 headers['authToken'] = Utils.GetAuthToken(headers['email'],
> > headers['password'])
> > ...
>
> > Investigating further it seems to be that GetAuthToken isn't using the
> > proxy provided in GetCampaignService().
>
> > Is that right?
> > If so, is there a solution to solve that problem?
>
> > Thanks, Helmut

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

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


Re: problems encountered during development with Adwords API python lib

2010-07-29 Thread xero
Hi Eric,
  Thanks for helping out!

  I've a few further ones:

1. It's a pity that TargetingIdeaService can't return >800 entries for
keywords only. But it's definitely great news that gzipped HTTP
transport support is under way. When will it be ready? Is there any
timetable for that?

2. Is it possible for DEV team to add support for returning valid
category ids?
  It doesn't need to be "real" by all means, but some "dummy" random
number falling into the range of valid/possible keyword category ids.
In this way, users can still see some "dummy" results of keyword
category names from the sandbox data. Basically it's generating a
random number in one range instead of another.

3. It would be useful to add keyword category utility functions just
like what GetCategories() did for placement categories. And It's nice
to know keyword supports multiple categories.

4. Thanks for clarifying on keyword format. Besides invalid
characters, are there any other restrictions, e.g, keyword lengths?
  Actually I'm thinking that returning all-0s or N/A results for those
keywords may be a better way for Adwords API implementation. It's
customer's fault to submit malformed keywords, and the customer can
prevent or remedy such mistake in many ways. Google doesn't need to be
responsible for that. Throwing an exception/failing the entire call is
too "heavy".

On Jul 29, 5:45 am, AdWords API Advisor 
wrote:
> Hi,
>
> To address your questions:
>
> 1) Yes, TargetingIdeaService.get() has an upper limit of 800 entries.
> We'll work to make this more clear in the documentation.
>
> 2) Unfortunately not.
>
> 3) I believe only the following attributes can be requested:
> AD_SHARE, EXTRACTED_FROM_WEBPAGE, IDEA_TYPE, KEYWORD, SEARCH_SHARE.
>
> 4) The URL is used to generate keyword ideas, the same as the get()
> method.
>
> 5) The current Python client library doesn't support gzipped HTTP
> transport, but this feature is in the works already.
>
> 6) The sandbox will always return dummy data, including the category
> ids.
>
> 7) This method returns the available placement categories, now called
> Verticals in the API.  There are not compatible with the keyword
> categories.
>
> 8) Yes, keywords can have multiple categories.
>
> 9) Information about invalid characters in keywords is available 
> here:http://adwords.google.com/support/aw/bin/answer.py?hl=en&answer=53539
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Jul 27, 11:32 am, xero  wrote:
>
> > Hi,
>
> >   I'm currently using Adwords API python lib. The following are
> > problems encountered in development. Can anyone help?
>
> > Q1. For getting ideas using "get":
> > Is it true that "totalNumEntries" returned is always <=800? It's not
> > clearly stated in API docs, but mentioned several times in other
> > articles on Internet.
>
> > Q2. If the answer to Q1 is yes, is there any way to retrieve >800
> > keyword ideas by using a list of keywords only(without providing URL)?
>
> > Q3. For getting ideas using "getBulkKeywordIdeas":
> > In API docs, it says "A limited, fixed set of attributes will be
> > returned." What are those "limited, fixed set of attributes" exactly?
>
> > Q4. How is the result of "getBulkKeywordIdeas" related to input URL?
> > If I use this URL to call "get" to retrieve keyword ideas, are the
> > results the same (at least for those 800 results)?
>
> > Q5. Is it possible to retrieve gzipped results of Targeting Idea
> > Service and Traffic Estimate Service? Does Adwords python lib support
> > gzipping/un-gzipping the requests & the responses?
>
> > Q6. I did some tests for keyword categories in sandbox, and found out
> > that none of the keyword category id returned from sandbox is in
> > category id range described 
> > here:http://code.google.com/intl/en/apis/adwords/v2009/docs/codelists/keyw
> > Is it intentional behavior? Where can I get accurate category
> > description for a category id?
>
> > Q7. There's a function GetCategories() in Adwords python lib. What's
> > this category list used for? Is it related to keyword category id
> > returned by targeting idea service?
>
> > Q8. Does a keyword idea support multiple keyword categories?
> >   In API docs, it says "KEYWORD_CATEGORY represents a category id for
> > a category within the category hierarchy for keyword ideas. Resulting
> > attribute is IntegerSetAttribute."
> >   It seems keyword category is only an integer, but it uses integer
> > set as return type.
>
> > Q9. What's google's keyword format ('invalid character' problem)?
> >   In one of my tests, when calling estimateKeywordList in traffic
> > estimator service, it returns:
> > "aw_api.Errors.RequestError: Code 14: This keyword text is not valid."
> >   I've found out *?() can't occur in keyword text. Otherwise the web
> > service call will fail.
> >   Why raising an exception instead of returning some specific values
> > for those malformed keywords, such as all-zeros or N/A flag, is beyond
> > me. It's not appealing that a list of ke

Re: Unexpected zero impression single day report error

2010-07-29 Thread tozor
Not to drag on this thread indefinitely, but are you saying that I
could also get around my current error,  if I ran the same type of
zero impression report in v201003?

Tim

On Jul 29, 2:20 pm, AdWords API Advisor 
wrote:
> Hi Tim,
>
> Thanks for the feedback regarding the account structure report.  As an
> aside, the v201003 ReportDefinitionService takes a different approach,
> removing account structure reports completely and support zero-
> impressions for all report types.  Report generations is also much
> faster with this service, so it may be worth exploring.
>
> Best,
> - Eric
>
> On Jul 28, 10:52 pm, tozor  wrote:
>
>
>
> > Thanks much Eric.  One comment I would make is that the Account
> > Structure report is not a complete replacement for the zero impression
> > keyword report because of the fact that first page cpc and quality
> > score are not available in the Account Structure report.  This is the
> > main reason I have not switched to it.  I have seen other people in
> > this group raise the issue of the lack of support for these two
> > attributes in the structure report.  I suspect most application
> > developers who are syncing a database from one of these reports are
> > probably going to require quality score and first page cpc, since
> > these are common attributes to keep in your application database.
> > Hopefully you folks will add these attributes to the Account Structure
> > report in the near future.
>
> >     Tim
>
> > On Jul 28, 5:07 pm, AdWords API Advisor 
> > wrote:
>
> > > Hi Tim,
>
> > > It looks like the problem is that this account has over the advisable
> > > number of ad groups for a report with that configuration.  Because of
> > > an error in the validation logic this limit isn't checked if specific
> > > campaignIds are specified in the report job, which is why that
> > > configuration doesn't return an error.  While this job may be
> > > currently succeeding in this configuration, since it is over the
> > > limits it might start failing at any time.  I would refer you back to
> > > my original advice to either segment your data or use the Account
> > > Structure report to get this information instead.
>
> > > Best,
> > > - Eric
>
> > > On Jul 27, 6:12 pm, tozor  wrote:
>
> > > > Here is a failed request:
>
> > > >     51c8e997ea0e13c961b41e81559a97c8
>
> > > > Thanks.
>
> > > >     Tim
>
> > > > On Jul 27, 5:01 pm, AdWords API Advisor 
> > > > wrote:
>
> > > > > Hi Tim,
>
> > > > > Your original failed request from earlier is no longer in the logs.
> > > > > Can you please schedule another of those reports and send me the new
> > > > > requestId?
>
> > > > > Thanks,
> > > > > - Eric
>
> > > > > On Jul 27, 2:28 pm, tozor  wrote:
>
> > > > > > I made a request with all 106 campaigns and it worked.  Here is the
> > > > > > request id:
>
> > > > > >   ad94b71784836c3a7cfdc6ff2315435b
>
> > > > > > Once again thanks very much for working with me on this issue.
>
> > > > > >     Tim
>
> > > > > > On Jul 27, 12:47 pm, AdWords API Advisor
>
> > > > > >  wrote:
> > > > > > > Hi Tim,
>
> > > > > > > It looks like the account contains 106 campaigns, if you count the
> > > > > > > deleted ones, but your second request only includes 75 campaigns. 
> > > > > > >  I
> > > > > > > believe these extra campaigns are causing the report to be over 
> > > > > > > the
> > > > > > > size limit.
>
> > > > > > > Best,
> > > > > > > - Eric
>
> > > > > > > On Jul 26, 2:01 pm, tozor  wrote:
>
> > > > > > > > Here is the one with no campaign ids that fails:
>
> > > > > > > >     32320c4e46d082fa1c100dbeebcc3b49
>
> > > > > > > > Here is the one with all campaign ids that works:
>
> > > > > > > >     063342a4efc425e78565e94e11d47641
>
> > > > > > > > Thanks again.
>
> > > > > > > >     Tim
>
> > > > > > > > On Jul 26, 9:54 am, AdWords API Advisor 
> > > > > > > > 
> > > > > > > > wrote:
>
> > > > > > > > > Hi Tim,
>
> > > > > > > > > Can you post the requestIds of the requests used to schedule 
> > > > > > > > > these
> > > > > > > > > reports (the one that fails and the one that succeeds).  
> > > > > > > > > Perhaps that
> > > > > > > > > will shed some light on the issue.
>
> > > > > > > > > Best,
> > > > > > > > > - Eric
>
> > > > > > > > > On Jul 23, 5:53 pm, tozor  wrote:
>
> > > > > > > > > > I appreciate the reply, but doesn't it seem logically 
> > > > > > > > > > inconsistent
> > > > > > > > > > that I can request the same report with all of the campaign 
> > > > > > > > > > ids and it
> > > > > > > > > > works?  If I leave the campaign ids empty it fails.  
> > > > > > > > > > Wouldn't you
> > > > > > > > > > agree that it is logically equivalent to either specify all 
> > > > > > > > > > of the
> > > > > > > > > > campaign ids or leave the campaign ids empty?  If you 
> > > > > > > > > > agree, then why
> > > > > > > > > > does the report fail in one instance and not in the other?
>
> > > > > > > > > >     Tim
>
> > > > > > > > > > On Jul 23, 2:27 pm, AdWords API Advisor 
> > >

Re: What is InternalApiError.UNEXPECTED_INTERNAL_API_ERROR?

2010-07-29 Thread Jeremy Aube
I'm also seeing it for clean, mostly empty sandboxes, so I think it's
an issue with the API system itself rather than with invalid data.

Jeremy Aube
ROI Revolution

On Jul 29, 3:06 pm, Jeremy Aube  wrote:
> I've been seeing this while using the sandbox viewer as well. Happens
> for ads, keywords, and placements.
>
> Jeremy Aube
> ROI Revolution
>
> On Jul 29, 10:57 am, SamR  wrote:
>
> > I'm writing some PHP code to interact with the v201003 API methods.
> > This is all on thehttps://adwords-sandbox.google.comserver.  I'm
> > able to use the GetCampaignService and the GetAdGroupService features
> > but for some reason when I call GetAdGroupAdService the return is the
> > "SoapFault Object" which indicates an
> > "InternalApiError.UNEXPECTED_INTERNAL_API_ERROR."  This has been
> > happening consistently for the past 4 days.  I'm using 
> > thehttp://code.google.com/p/google-api-adwords-php/tobuild my PHP code.
>
> > Is it possible that parts of the API, such as the GetAdGroupAdService,
> > are down and unavailable?  What's the best way to find out when the
> > API is available or not?
>
> > Thanks.
> > P.S. This message was originally posted to the AdWords Forum 
> > (http://www.google.com/support/forum/p/AdWords/thread?tid=5a3685bba8cf..)
> > where it received little love.  As a result I'm moving it here since
> > it's API related.

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

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


Re: What is InternalApiError.UNEXPECTED_INTERNAL_API_ERROR?

2010-07-29 Thread Jeremy Aube
I'm also seeing it for clean, mostly empty sandboxes, so I don't think
it's an issue with the API system itself rather than invalid data.

Jeremy Aube
ROI Revolution

On Jul 29, 3:06 pm, Jeremy Aube  wrote:
> I've been seeing this while using the sandbox viewer as well. Happens
> for ads, keywords, and placements.
>
> Jeremy Aube
> ROI Revolution
>
> On Jul 29, 10:57 am, SamR  wrote:
>
> > I'm writing some PHP code to interact with the v201003 API methods.
> > This is all on thehttps://adwords-sandbox.google.comserver.  I'm
> > able to use the GetCampaignService and the GetAdGroupService features
> > but for some reason when I call GetAdGroupAdService the return is the
> > "SoapFault Object" which indicates an
> > "InternalApiError.UNEXPECTED_INTERNAL_API_ERROR."  This has been
> > happening consistently for the past 4 days.  I'm using 
> > thehttp://code.google.com/p/google-api-adwords-php/tobuild my PHP code.
>
> > Is it possible that parts of the API, such as the GetAdGroupAdService,
> > are down and unavailable?  What's the best way to find out when the
> > API is available or not?
>
> > Thanks.
> > P.S. This message was originally posted to the AdWords Forum 
> > (http://www.google.com/support/forum/p/AdWords/thread?tid=5a3685bba8cf..)
> > where it received little love.  As a result I'm moving it here since
> > it's API related.

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

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


Re: What is InternalApiError.UNEXPECTED_INTERNAL_API_ERROR?

2010-07-29 Thread Jeremy Aube
I've been seeing this while using the sandbox viewer as well. Happens
for ads, keywords, and placements.

Jeremy Aube
ROI Revolution

On Jul 29, 10:57 am, SamR  wrote:
> I'm writing some PHP code to interact with the v201003 API methods.
> This is all on thehttps://adwords-sandbox.google.comserver.  I'm
> able to use the GetCampaignService and the GetAdGroupService features
> but for some reason when I call GetAdGroupAdService the return is the
> "SoapFault Object" which indicates an
> "InternalApiError.UNEXPECTED_INTERNAL_API_ERROR."  This has been
> happening consistently for the past 4 days.  I'm using 
> thehttp://code.google.com/p/google-api-adwords-php/to build my PHP code.
>
> Is it possible that parts of the API, such as the GetAdGroupAdService,
> are down and unavailable?  What's the best way to find out when the
> API is available or not?
>
> Thanks.
> P.S. This message was originally posted to the AdWords Forum 
> (http://www.google.com/support/forum/p/AdWords/thread?tid=5a3685bba8cf308d&hl...)
> where it received little love.  As a result I'm moving it here since
> it's API related.

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

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


Re: What is InternalApiError.UNEXPECTED_INTERNAL_API_ERROR?

2010-07-29 Thread Tilendor


I'm getting the same problem.  We use the adwords API, and use gembox
to help view whats in the sandbox environment.  We've been getting the
internal error part way through downloading adgroups.  I'm not sure
which specific request in gembox is failing, but its been happening
for over a week.  Any way to know if its our fault or the systems?

I would be fine with the sandbox being cleared so we can start from
scratch if there is any invalid data.

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

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


Re: API error with report

2010-07-29 Thread chris h
Note: the report succeeds if you remove ExperimentRowStatus and
ExperimentDeltaStatus.
But both of those are listed as valid fields for this report

On Jul 29, 3:35 pm, chris h  wrote:
> I get error:
>
> !!!Unexpected exception|||2410215
>
> When running adgroup_performance_report with these fields:
>
>   AverageCpc, AverageCpm, AveragePosition, Clicks, ConversionRate,
>   ConversionRateManyPerClick, Cost, CostPerConversion,
>   CostPerConversionManyPerClick, Conversions,
> ConversionsManyPerClick,
>   Ctr, Impressions, ProxyKeywordMaxCpc, ProxySiteMaxCpc,
>   TargetCpa, KeywordContentMaxCpc, KeywordMaxCpc, SiteMaxCpc, MaxCpm,
>   ExperimentRowStatus, EnhancedCpcEnabled, ExperimentDeltaStatus,
>   ExperimentId, CampaignId, CampaignName, Id, Name, Status
>
> Using your .NET library
>
> There are two issues here:
>
> 1. that it errors
> 2. (more importantly) that it errors and returns invalid XML
>
> If an API call has an error, it needs to do one of two things
>
> a. return the error in XML
> b. throw an exception

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


API error with report

2010-07-29 Thread chris h
I get error:

!!!Unexpected exception|||2410215

When running adgroup_performance_report with these fields:

  AverageCpc, AverageCpm, AveragePosition, Clicks, ConversionRate,
  ConversionRateManyPerClick, Cost, CostPerConversion,
  CostPerConversionManyPerClick, Conversions,
ConversionsManyPerClick,
  Ctr, Impressions, ProxyKeywordMaxCpc, ProxySiteMaxCpc,
  TargetCpa, KeywordContentMaxCpc, KeywordMaxCpc, SiteMaxCpc, MaxCpm,
  ExperimentRowStatus, EnhancedCpcEnabled, ExperimentDeltaStatus,
  ExperimentId, CampaignId, CampaignName, Id, Name, Status

Using your .NET library

There are two issues here:

1. that it errors
2. (more importantly) that it errors and returns invalid XML

If an API call has an error, it needs to do one of two things

a. return the error in XML
b. throw an exception

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

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


Re: API Guidance.

2010-07-29 Thread AdWords API Advisor
Hi,

The first step to getting access is registering as an AdWords API
developer:

  https://adwords.google.com/support/aw/adwordsapi/bin/answer.py?answer=15104

There is no comprehensive list of features that are and aren't
available in the API, but we aim to provide the same functionality as
the AdWords web interface.

Best,
- Eric Koleda, AdWords API Team

On Jul 29, 4:43 am, Adz  wrote:
> We are looking at Google AdWords API for our website.
>
> What is the actually procedure?
>
> Can we replicate all the AdWords interface into our software? Or is
> there only a certain amount of fields we can populate with our
> software and AdWords is still controlled through the AdWords
> dashboard?
>
> I have looked around the AdWords API and there is no real defining
> details on what we can and can't not do.

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

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


Re: Unexpected zero impression single day report error

2010-07-29 Thread AdWords API Advisor
Hi Tim,

Thanks for the feedback regarding the account structure report.  As an
aside, the v201003 ReportDefinitionService takes a different approach,
removing account structure reports completely and support zero-
impressions for all report types.  Report generations is also much
faster with this service, so it may be worth exploring.

Best,
- Eric

On Jul 28, 10:52 pm, tozor  wrote:
> Thanks much Eric.  One comment I would make is that the Account
> Structure report is not a complete replacement for the zero impression
> keyword report because of the fact that first page cpc and quality
> score are not available in the Account Structure report.  This is the
> main reason I have not switched to it.  I have seen other people in
> this group raise the issue of the lack of support for these two
> attributes in the structure report.  I suspect most application
> developers who are syncing a database from one of these reports are
> probably going to require quality score and first page cpc, since
> these are common attributes to keep in your application database.
> Hopefully you folks will add these attributes to the Account Structure
> report in the near future.
>
>     Tim
>
> On Jul 28, 5:07 pm, AdWords API Advisor 
> wrote:
>
>
>
> > Hi Tim,
>
> > It looks like the problem is that this account has over the advisable
> > number of ad groups for a report with that configuration.  Because of
> > an error in the validation logic this limit isn't checked if specific
> > campaignIds are specified in the report job, which is why that
> > configuration doesn't return an error.  While this job may be
> > currently succeeding in this configuration, since it is over the
> > limits it might start failing at any time.  I would refer you back to
> > my original advice to either segment your data or use the Account
> > Structure report to get this information instead.
>
> > Best,
> > - Eric
>
> > On Jul 27, 6:12 pm, tozor  wrote:
>
> > > Here is a failed request:
>
> > >     51c8e997ea0e13c961b41e81559a97c8
>
> > > Thanks.
>
> > >     Tim
>
> > > On Jul 27, 5:01 pm, AdWords API Advisor 
> > > wrote:
>
> > > > Hi Tim,
>
> > > > Your original failed request from earlier is no longer in the logs.
> > > > Can you please schedule another of those reports and send me the new
> > > > requestId?
>
> > > > Thanks,
> > > > - Eric
>
> > > > On Jul 27, 2:28 pm, tozor  wrote:
>
> > > > > I made a request with all 106 campaigns and it worked.  Here is the
> > > > > request id:
>
> > > > >   ad94b71784836c3a7cfdc6ff2315435b
>
> > > > > Once again thanks very much for working with me on this issue.
>
> > > > >     Tim
>
> > > > > On Jul 27, 12:47 pm, AdWords API Advisor
>
> > > > >  wrote:
> > > > > > Hi Tim,
>
> > > > > > It looks like the account contains 106 campaigns, if you count the
> > > > > > deleted ones, but your second request only includes 75 campaigns.  I
> > > > > > believe these extra campaigns are causing the report to be over the
> > > > > > size limit.
>
> > > > > > Best,
> > > > > > - Eric
>
> > > > > > On Jul 26, 2:01 pm, tozor  wrote:
>
> > > > > > > Here is the one with no campaign ids that fails:
>
> > > > > > >     32320c4e46d082fa1c100dbeebcc3b49
>
> > > > > > > Here is the one with all campaign ids that works:
>
> > > > > > >     063342a4efc425e78565e94e11d47641
>
> > > > > > > Thanks again.
>
> > > > > > >     Tim
>
> > > > > > > On Jul 26, 9:54 am, AdWords API Advisor 
> > > > > > > 
> > > > > > > wrote:
>
> > > > > > > > Hi Tim,
>
> > > > > > > > Can you post the requestIds of the requests used to schedule 
> > > > > > > > these
> > > > > > > > reports (the one that fails and the one that succeeds).  
> > > > > > > > Perhaps that
> > > > > > > > will shed some light on the issue.
>
> > > > > > > > Best,
> > > > > > > > - Eric
>
> > > > > > > > On Jul 23, 5:53 pm, tozor  wrote:
>
> > > > > > > > > I appreciate the reply, but doesn't it seem logically 
> > > > > > > > > inconsistent
> > > > > > > > > that I can request the same report with all of the campaign 
> > > > > > > > > ids and it
> > > > > > > > > works?  If I leave the campaign ids empty it fails.  Wouldn't 
> > > > > > > > > you
> > > > > > > > > agree that it is logically equivalent to either specify all 
> > > > > > > > > of the
> > > > > > > > > campaign ids or leave the campaign ids empty?  If you agree, 
> > > > > > > > > then why
> > > > > > > > > does the report fail in one instance and not in the other?
>
> > > > > > > > >     Tim
>
> > > > > > > > > On Jul 23, 2:27 pm, AdWords API Advisor 
> > > > > > > > > 
> > > > > > > > > wrote:
>
> > > > > > > > > > Hi Tim,
>
> > > > > > > > > > There are many factors that go into deciding whether or not 
> > > > > > > > > > the report
> > > > > > > > > > is too large, beyond the number of keywords or date range 
> > > > > > > > > > alone.  It
> > > > > > > > > > is likely that there are other factors that would make this 
> > > > > > > > > > report too
> > > > > > > > > > large.  My recommendation at 

Re: Difference in search volume between API and Keyword Tool?

2010-07-29 Thread ExpediaSEOTeam
FYI it appears as though this problem may not be effecting exact match
search volume data from the API. We've run a few initial tests and
with the tool logged in vs. API vs. logged out tool and so far it
looks as though you can actually get accurate numbers (accurate in the
sense they match the keyword tool when logged out) if you do not
specify the client email in the API call.

This appears to be a quick fix if you need to pull down SV data in the
meantime.

HTH

Thanks
Andrew

On Jul 28, 2:48 pm, AdWords API Advisor 
wrote:
> Hi Andrew,
>
> The core engineering team is still working on the issue, but I still
> don't have any information on when the problem will be resolved.
>
> Best,
> - Eric
>
> On Jul 27, 4:20 pm, ExpediaSEOTeam  wrote:
>
> > Hi Eric,
>
> > Is there any update on a fix for this bug? It's been almost three
> > weeks since you mentioned the engineering team were looking into this.
>
> > Thanks
> > Andrew
>
> > On Jul 12, 4:13 pm, AdWordsAPIAdvisor 
> > wrote:
>
> > > Hi,
>
> > > The core engineering team is working on this issue, but at this time I
> > > don't have any further details.
>
> > > Best,
> > > - Eric
>
> > > On Jul 9, 5:21 pm, k  wrote:
>
> > > > Bump. I am having the same problem as Achim above. It is quite
> > > > maddening.
>
> > > > Has anyone figured out why there is such a huge discrepancy?
>
> > > > Can anyone explain how to get the stats for A SINGLE PARTICULAR
> > > >keywordusing the GUItoolwhen signed in?
>
> > > > If there is no fix for this, then I would at least like to understand
> > > > what is causing the hugedifference.
>
> > > > Thanks, K
>
> > > > On Jul 5, 7:42 am, GMTD  wrote:
>
> > > > > Dear Eric,
> > > > > I seem to have sort of the same problem, but Brians solution didn't
> > > > > help me since now.
> > > > > We're using theAPI-Requests targeted with
> > > > > LanguageTargetSearchParameter and CountryTargetSearchParameter but
> > > > > have different results using theAPIand the Webinterface.
>
> > > > > For theKeyword"wandpaneele" in the "EXACT"-Mode...
> > > > > i) AdwordsAPIgives me the value of 2.400 for global_monthly_requests
> > > > > ii) AdwordsKeywordToolLOGGED IN WITH THE SAME USERNAME AS MYAPI-
> > > > > APPLICATION uses doesn't give me any stats about exactly thiskeyword
> > > > > (strange, isn't it?)
> > > > > iii) AdwordsKeywordToolExternal (NOT LOGGED IN, captcha-mode) gives
> > > > > me 8.100 for global_monthly_requests (some 340% divergence)
> > > > > iv) AdwordsKeywordToolLOGGED IN WITH ANOTHER USERNAME gives me
> > > > > 8.100 for global_monthly_requests
>
> > > > > We just wonder if the data available throughout theAPIis any
> > > > > reliable, or - as we pay for theAPIdata - if only theAPI-Data is
> > > > > close to the truth.
> > > > > If you need my accounts'-data to help out pls refer to me via email.
>
> > > > > Thanks in advance
> > > > > Achim
>
> > > > > On 30 Jun., 22:45, AdWordsAPIAdvisor 
> > > > > wrote:
>
> > > > > > Hi Brian,
>
> > > > > > So it looks like the problem is due to the existence of twokeyword
> > > > > > tools that use slightly different technology.
>
> > > > > > 1)Search-basedKeywordTool:http://www.google.com/sktool/
>
> > > > > > 2) 
> > > > > > AdWordsKeywordTool:https://adwords.google.com/select/KeywordToolExternal
>
> > > > > > The TargetingIdeaService and AdWordsKeywordToolshare the same
> > > > > > underlying technology, and thesearchvolumeestimates should be the
> > > > > > same in both.  TheSearch-basedKeywordTooluses slightly different
> > > > > > technology and is expected to deliver differentsearchvolume
> > > > > > estimates.  Please using the AdWordsKeywordToolwhen doing
> > > > > > comparisons with the TargetingIdeaService.
>
> > > > > > Best,
> > > > > > - Eric
>
> > > > > > On Jun 29, 1:02 pm, Brian Jensen  wrote:
>
> > > > > > > Thanks, Eric.
>
> > > > > > > I appreciate you taking the time to review this issue and look 
> > > > > > > forward
> > > > > > > to your findings.
>
> > > > > > > Regards -
> > > > > > > Brian
>
> > > > > > > On Jun 29, 8:03 am, AdWordsAPIAdvisor 
> > > > > > > 
> > > > > > > wrote:
>
> > > > > > > > Hi Brian,
>
> > > > > > > > I'll look into this a bit deeper and let you know what I find.
>
> > > > > > > > Best,
> > > > > > > > - Eric
>
> > > > > > > > On Jun 25, 5:36 pm, Brian Jensen  wrote:
>
> > > > > > > > > Eric -
>
> > > > > > > > > Thank you for your quick response.  We actually went back and 
> > > > > > > > > modified
> > > > > > > > > the 'GetRelatedKeywords.php' file from the v2009 client 
> > > > > > > > > library
> > > > > > > > > examples with those additional parameters.  It corrected the 
> > > > > > > > > average
> > > > > > > > > monthlysearchvolumes (to show only US volumes) but the global
> > > > > > > > > volumes stayed the same.  Both of these numbers (the average 
> > > > > > > > > and the
> > > > > > > > > global) are still too high.
>
> > > > > > > > > Using the same example: "twin air bed"
> > > > > > > > >      Global EXACT match: 29

Re: Got "Fault occurred while processing" error

2010-07-29 Thread Christian Fuentes
Thanks a lot!!

On 29 jul, 17:26, AdWords API Advisor 
wrote:
> Hi,
>
> This error is being thrown because the date is formatted incorrectly.
> The correct format is Ymd, for example 20100729.  I'll work with the
> core engineering team to have a better error thrown in this case.
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Jul 28, 11:28 am, Christian Fuentes  wrote:
>
>
>
> > Trying to add a ReportDefinition I got this error, but the code is the
> > same as the example called AddKeywordsPerformanceReportDefinition, and
> > the credentials are OK (I got all my campaigns and adGroups from the
> > API).
>
> > This is the code
>
> >     $adwords = new AdWordsUser(NULL, $email, $password,
> > $developerToken, $applicationToken, $userAgent, $clientIds['es']);
> >     $adwords->LogDefaults();
> >     /* add report definition */
> >     // Get the GetReportDefinitionService.
> >     $reportDefinitionService = $adwords-
>
> > >GetReportDefinitionService('v201003');
>
> >     $adGroupId = (float) 1312246342;
> >     $startDate = date('Y-m-d', strtotime('-2 days'));
> >     $endDate = date('Y-m-d', strtotime('yesterday'));
>
> >     // Create ad group predicate.
> >     $adGroupPredicate = new Predicate();
> >     $adGroupPredicate->field = 'AdGroupId';
> >     $adGroupPredicate->operator = 'EQUALS';
> >     $adGroupPredicate->values = array($adGroupId);
>
> >     // Create selector.
> >     $selector = new Selector();
> >     $selector->fields = array('AdGroupId', 'Id', 'KeywordText',
> > 'KeywordMatchType', 'Impressions', 'Clicks', 'Cost');
> >     $selector->predicates = array($adGroupPredicate);
> >     $selector->dateRange = new DateRange($startDate, $endDate);
>
> >     // Create report definition.
> >     $reportDefinition = new ReportDefinition();
> >     $reportDefinition->reportName = 'Keywords performance report #' .
> > time();
> >     $reportDefinition->dateRangeType = 'CUSTOM_DATE';
> >     $reportDefinition->reportType = 'KEYWORDS_PERFORMANCE_REPORT';
> >     $reportDefinition->downloadFormat = 'XML';
> >     $reportDefinition->selector = $selector;
>
> >     // Create operations.
> >     $operation = new ReportDefinitionOperation();
> >     $operation->operand = $reportDefinition;
> >     $operation->operator = 'ADD';
>
> >     $operations = array($operation);
>
> >     // Add report definition.
> >     $result = $reportDefinitionService->mutate($operations);
>
> > Can someone please help... 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


Re: Got "Fault occurred while processing" error

2010-07-29 Thread AdWords API Advisor
Hi,

This error is being thrown because the date is formatted incorrectly.
The correct format is Ymd, for example 20100729.  I'll work with the
core engineering team to have a better error thrown in this case.

Best,
- Eric Koleda, AdWords API Team

On Jul 28, 11:28 am, Christian Fuentes  wrote:
> Trying to add a ReportDefinition I got this error, but the code is the
> same as the example called AddKeywordsPerformanceReportDefinition, and
> the credentials are OK (I got all my campaigns and adGroups from the
> API).
>
> This is the code
>
>     $adwords = new AdWordsUser(NULL, $email, $password,
> $developerToken, $applicationToken, $userAgent, $clientIds['es']);
>     $adwords->LogDefaults();
>     /* add report definition */
>     // Get the GetReportDefinitionService.
>     $reportDefinitionService = $adwords-
>
> >GetReportDefinitionService('v201003');
>
>     $adGroupId = (float) 1312246342;
>     $startDate = date('Y-m-d', strtotime('-2 days'));
>     $endDate = date('Y-m-d', strtotime('yesterday'));
>
>     // Create ad group predicate.
>     $adGroupPredicate = new Predicate();
>     $adGroupPredicate->field = 'AdGroupId';
>     $adGroupPredicate->operator = 'EQUALS';
>     $adGroupPredicate->values = array($adGroupId);
>
>     // Create selector.
>     $selector = new Selector();
>     $selector->fields = array('AdGroupId', 'Id', 'KeywordText',
> 'KeywordMatchType', 'Impressions', 'Clicks', 'Cost');
>     $selector->predicates = array($adGroupPredicate);
>     $selector->dateRange = new DateRange($startDate, $endDate);
>
>     // Create report definition.
>     $reportDefinition = new ReportDefinition();
>     $reportDefinition->reportName = 'Keywords performance report #' .
> time();
>     $reportDefinition->dateRangeType = 'CUSTOM_DATE';
>     $reportDefinition->reportType = 'KEYWORDS_PERFORMANCE_REPORT';
>     $reportDefinition->downloadFormat = 'XML';
>     $reportDefinition->selector = $selector;
>
>     // Create operations.
>     $operation = new ReportDefinitionOperation();
>     $operation->operand = $reportDefinition;
>     $operation->operator = 'ADD';
>
>     $operations = array($operation);
>
>     // Add report definition.
>     $result = $reportDefinitionService->mutate($operations);
>
> Can someone please help... 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


Re: Unable to find the wrapper "https"

2010-07-29 Thread AdWords API Advisor
Hi,

I think the problem may be that even though you have the OpenSSL
extension enabled, you don't have the core OpenSSL library installed
in your environment.  A windows installed is available here:

  http://gnuwin32.sourceforge.net/packages/openssl.htm

Best,
- Eric Koleda, AdWords API Team

On Jul 28, 11:41 am, "Joshua J. Kugler"  wrote:
> On Wednesday 28 July 2010, Chaost elucidated thus:
>
> > Right now i have changed the reporting app to run as a batch file,
> > which works fine.
>
> > However, for the future (and possibly to help some other poor sole!)
> > help with this would still be appreciated.
>
> > Cheers
>
> How are you viewing the PHP in your browser? Are you browsing to the
> file on you local hard drive, or are you invoking it via a web server?
>
> It is possible your web server PHP configs and your "batch" configs (php
> command line?) are different.
>
> j
>
> --
> Joshua Kugler
> Part-Time System Admin/Programmerhttp://www.eeinternet.com
> PGP Key:http://pgp.mit.edu/ID 0x73B13B6A

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


Sandbox initialization

2010-07-29 Thread Christian Fuentes
After some problema getting used to the Adwords API I finally got it
working, now I'd like to run some deep tests, like creating campagins,
changing bids, ... but I wan't start this tests in production. Is
there a way to export one or more productions campaigns to the sandbox
environment to test it with real data?

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


What is InternalApiError.UNEXPECTED_INTERNAL_API_ERROR?

2010-07-29 Thread SamR
I'm writing some PHP code to interact with the v201003 API methods.
This is all on the https://adwords-sandbox.google.com server.  I'm
able to use the GetCampaignService and the GetAdGroupService features
but for some reason when I call GetAdGroupAdService the return is the
"SoapFault Object" which indicates an
"InternalApiError.UNEXPECTED_INTERNAL_API_ERROR."  This has been
happening consistently for the past 4 days.  I'm using the
http://code.google.com/p/google-api-adwords-php/ to build my PHP code.

Is it possible that parts of the API, such as the GetAdGroupAdService,
are down and unavailable?  What's the best way to find out when the
API is available or not?

Thanks.
P.S. This message was originally posted to the AdWords Forum (http://
www.google.com/support/forum/p/AdWords/thread?tid=5a3685bba8cf308d&hl=en&fid=5a3685bba8cf308d00048c72a3cdb176)
where it received little love.  As a result I'm moving it here since
it's API related.

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

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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Sir,

 after see the example I understand that this AdGroupCriterion Service
is provide keyword for advertise purpose. But I need generate Keywords
list for SEO using Google api in asp.net 2008 and c#.  Clearly my
client will be give his website in a textbox and clicking on "generate
keyword" button a list of keywords are fill next drop down control.
This keyword will be relevant with the client's website. And Google
API is provide these keywords. I want this application of google api
to integrateusing Asp.net 2008 and c#. Please sir provide me such type
of application's service and proper guideline to implement. Waiting
for your reply sir.

Thanks & Regards
Mukut Kandar



On Jul 29, 7:09 pm, AdWords API Advisor 
wrote:
> Hi Mukut,
>
> To create keywords in the API you need to use the
> AdGroupCriterionService:
>
>  http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupCrite...
>
> An example of how to use this service with the .NET client library to
> create keywords is available here:
>
>  http://code.google.com/p/google-api-adwords-dotnet/source/browse/trun...
>
> Best,
> - Eric Koleda, AdWords API Team
>
> On Jul 29, 9:33 am, Mukut  wrote:
>
>
>
> > Sir I have no response on this discussion please give me a suggestion.
> > I am waiting for your reply.
>
> > On Jul 29, 5:05 pm, Mukut  wrote:
>
> > > Dear Sir,
> > > I am trying to create in a new website application of
> > > Asp.net 2008 using c# for generate keyword through Google Adword API
> > > with my user interface. I can not get any example on it. There are I
> > > am get example on campaigning but not in keyword generate. Sir please
> > > provide me an example or full instruction on it. Is it chargeable then
> > > confirm me. I have to do it anyway.
>
> > > On Jul 29, 4:35 pm, AdWords API Advisor 
> > > wrote:
>
> > > > Hi Mukut,
>
> > > > Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=en&answer=1...
> > > > for details on what developer tokens are. Also see our FAQ pages at
>
> > > >http://www.google.com/support/adwordsapi/http://www.google.com/suppor...
>
> > > > for other topics related to AdWords API.
>
> > > > Cheers,
> > > > Anash
>
> > > > On Jul 29, 4:12 pm, Mukut  wrote:
>
> > > > > Sir,
>
> > > > >  I did not get any response. Please anybody can help me to generate
> > > > > keyword using Google Adword API in Asp.net 3.5 and c#.
> > > > > There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
> > > > > copy all the files and folder in another folder to and run it with
> > > > > changing in web.config file. And create a Log folder in it. Changes in
> > > > > web.config file to set values for add key as CompanyName, Email,
> > > > > Password, ClientEmail but cannot understand what is for
> > > > > "DeveloperToken". The website is running and create a campaign as
> > > > > result "Created campaign #-1 successfully!" above the create a
> > > > > Campaign button. What is the issue to creating a campaign. Please
> > > > > provide information me, I do not understand. What is the next
> > > > > procedure. Please help me. I am now in tremendous pressure. Waiting
> > > > > for your reply.
>
> > > > > Thanks & Regards
> > > > >  Mukut Kandar.
>
> > > > > On Jul 29, 3:20 pm, Mukut  wrote:
>
> > > > > > Dear Sir,
>
> > > > > > I am get an instruction word file after unzip the folder
> > > > > > awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
> > > > > > application. I am trying to create in a new website application of
> > > > > > Asp.net 2008 using c#. Please instruct me how to configure or
> > > > > > integrate for website the google Adword API to generate keyword.
>
> > > > > > On Jul 29, 1:57 pm, AdWords API Advisor 
> > > > > > 
> > > > > > wrote:
>
> > > > > > > Hi Mukut,
>
> > > > > > > Check out the AdWords API Dotnet library available 
> > > > > > > athttp://code.google.com/p/google-api-adwords-dotnet/. It works 
> > > > > > > with the
> > > > > > > latest version of AdWords API, has code examples for the common
> > > > > > > activities in AdWords API, and has an ASP.NET sample as well. The
> > > > > > > library is written in VS2005, but works fine with VS2008 as well.
>
> > > > > > > You might also want to 
> > > > > > > readhttp://code.google.com/apis/adwords/v2009/docs/start.html
> > > > > > > to learn more about AdWords API itself.
>
> > > > > > > Cheers,
> > > > > > > Anash P. Oommen,
> > > > > > > AdWords API Advisor.
>
> > > > > > > On Jul 29, 12:31 pm, Mukut  wrote:
>
> > > > > > > > Dear Sir,
>
> > > > > > > > I am beginner to integrating Google Adwords API. I want to 
> > > > > > > > integrate
> > > > > > > > the Google Adword API using ASP.NET 2008 and C#. But after so 
> > > > > > > > many
> > > > > > > > search I can't find proper example, instruction or source code 
> > > > > > > > to
> > > > > > > > integrate Google Adwords API. I am so tensed to complete my job.
> > > > > > > > My requirement is as below ==>
> > > > > > > > Client will enter their website into the portal. T

Password, Token and Security

2010-07-29 Thread contentman
Hi,

I'm beginner and I'm wondering how to use the API in a safe way. We
are a small agency with an MCC-Account in which we handle some
customer accounts. So our account should be very safe.

Now we are approved for the API token (we want to help our customers
for their keyword researches) - and the developers need to have all
account data (account-mail, token AND passwod).

But I'm not willing to give them our AdWord-Login to store it on the
webserver.

We have also an other AdWords Account for such things. But these
accounts are no MCC-Accounts. So my question is, how to use the API
without loosing safty?

Is there perhaps a way to bild our tool with an other AdWords-Account
an use the MCC-Account token?

thanks for your answer!

eric

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


Can't get KeywordText with ReportDefinitionService v201003 (beta)

2010-07-29 Thread Stipe
Hello,

I am having a problem with ReportDefinitionService v201003 (beta).
When creating report definition for keywords, I specify that
KeywordText should also be included in generated report. But when I
get report XML, all fields that I specified are present, except
KeywordText.

Is this some internal AdWords reporting API bug?
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


Re: Problem to using Google Adwords API

2010-07-29 Thread AdWords API Advisor
Hi Mukut,

To create keywords in the API you need to use the
AdGroupCriterionService:

  
http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupCriterionService.html

An example of how to use this service with the .NET client library to
create keywords is available here:

  
http://code.google.com/p/google-api-adwords-dotnet/source/browse/trunk/Examples/v200909/AddAdGroupCriteria.cs

Best,
- Eric Koleda, AdWords API Team

On Jul 29, 9:33 am, Mukut  wrote:
> Sir I have no response on this discussion please give me a suggestion.
> I am waiting for your reply.
>
> On Jul 29, 5:05 pm, Mukut  wrote:
>
>
>
> > Dear Sir,
> > I am trying to create in a new website application of
> > Asp.net 2008 using c# for generate keyword through Google Adword API
> > with my user interface. I can not get any example on it. There are I
> > am get example on campaigning but not in keyword generate. Sir please
> > provide me an example or full instruction on it. Is it chargeable then
> > confirm me. I have to do it anyway.
>
> > On Jul 29, 4:35 pm, AdWords API Advisor 
> > wrote:
>
> > > Hi Mukut,
>
> > > Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=en&answer=1...
> > > for details on what developer tokens are. Also see our FAQ pages at
>
> > >http://www.google.com/support/adwordsapi/http://www.google.com/suppor...
>
> > > for other topics related to AdWords API.
>
> > > Cheers,
> > > Anash
>
> > > On Jul 29, 4:12 pm, Mukut  wrote:
>
> > > > Sir,
>
> > > >  I did not get any response. Please anybody can help me to generate
> > > > keyword using Google Adword API in Asp.net 3.5 and c#.
> > > > There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
> > > > copy all the files and folder in another folder to and run it with
> > > > changing in web.config file. And create a Log folder in it. Changes in
> > > > web.config file to set values for add key as CompanyName, Email,
> > > > Password, ClientEmail but cannot understand what is for
> > > > "DeveloperToken". The website is running and create a campaign as
> > > > result "Created campaign #-1 successfully!" above the create a
> > > > Campaign button. What is the issue to creating a campaign. Please
> > > > provide information me, I do not understand. What is the next
> > > > procedure. Please help me. I am now in tremendous pressure. Waiting
> > > > for your reply.
>
> > > > Thanks & Regards
> > > >  Mukut Kandar.
>
> > > > On Jul 29, 3:20 pm, Mukut  wrote:
>
> > > > > Dear Sir,
>
> > > > > I am get an instruction word file after unzip the folder
> > > > > awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
> > > > > application. I am trying to create in a new website application of
> > > > > Asp.net 2008 using c#. Please instruct me how to configure or
> > > > > integrate for website the google Adword API to generate keyword.
>
> > > > > On Jul 29, 1:57 pm, AdWords API Advisor 
> > > > > wrote:
>
> > > > > > Hi Mukut,
>
> > > > > > Check out the AdWords API Dotnet library available 
> > > > > > athttp://code.google.com/p/google-api-adwords-dotnet/. It works 
> > > > > > with the
> > > > > > latest version of AdWords API, has code examples for the common
> > > > > > activities in AdWords API, and has an ASP.NET sample as well. The
> > > > > > library is written in VS2005, but works fine with VS2008 as well.
>
> > > > > > You might also want to 
> > > > > > readhttp://code.google.com/apis/adwords/v2009/docs/start.html
> > > > > > to learn more about AdWords API itself.
>
> > > > > > Cheers,
> > > > > > Anash P. Oommen,
> > > > > > AdWords API Advisor.
>
> > > > > > On Jul 29, 12:31 pm, Mukut  wrote:
>
> > > > > > > Dear Sir,
>
> > > > > > > I am beginner to integrating Google Adwords API. I want to 
> > > > > > > integrate
> > > > > > > the Google Adword API using ASP.NET 2008 and C#. But after so many
> > > > > > > search I can't find proper example, instruction or source code to
> > > > > > > integrate Google Adwords API. I am so tensed to complete my job.
> > > > > > > My requirement is as below ==>
> > > > > > > Client will enter their website into the portal. Then using 
> > > > > > > google API
> > > > > > > my application generate a list of keywords that are relevant to
> > > > > > > client's website.
>
> > > > > > > After search in web I have got two web services, they are
> > > > > > > "AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
> > > > > > > integrate google Adwords API to generate keywords using ASP.NET 
> > > > > > > 2008
> > > > > > > and c#, please send me instructions and proper guide to integrate 
> > > > > > > it
> > > > > > > in my web application. Otherwise I have to leave this job. I am so
> > > > > > > tensed for it ...
>
> > > > > > > Advanced thanks for the help ...

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

Yo

Re: column definition

2010-07-29 Thread AdWords API Advisor
Hi Dinesh,

Unfortunately this information isn't available for the v13 report
columns.  However, the new v201003 ReportDefinitionService provides
this information in the getReportFields() method.

  
http://code.google.com/apis/adwords/v2009/docs/reference/ReportDefinitionService.ReportDefinitionField.html

These two services are not compatible however, so you would need to
move entirely to v201003 reports to take advantage of this
functionality.

Best,
- Eric Koleda, AdWords API Team

On Jul 28, 2:04 pm, "dinesh.jonnadula+...@match.com"  wrote:
> i am pulling all the reports available through the API and am in the
> process of inserting into our database. but i dont see the column
> types in any of hte files i am downloading.(like int, long, string).
> where can i get this information

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


How generate Keyword using Google API with asp.net 2008 and c#

2010-07-29 Thread Mukut
Sir after many r & d and searching in Google Adword API I can't find
any resource or helpline to generate keywords list by integrating
Google API using asp.net 2008 and c#.
I am use your google Adwords api latest version and run how to
campigning as a sample website but no resource to Keyword generation
integrating google api. It is very vital for my job. please help and
give an guideline.

Thanks in advance for help me.

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

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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Sir I have no response on this discussion please give me a suggestion.
I am waiting for your reply.

On Jul 29, 5:05 pm, Mukut  wrote:
> Dear Sir,
> I am trying to create in a new website application of
> Asp.net 2008 using c# for generate keyword through Google Adword API
> with my user interface. I can not get any example on it. There are I
> am get example on campaigning but not in keyword generate. Sir please
> provide me an example or full instruction on it. Is it chargeable then
> confirm me. I have to do it anyway.
>
> On Jul 29, 4:35 pm, AdWords API Advisor 
> wrote:
>
>
>
> > Hi Mukut,
>
> > Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=en&answer=1...
> > for details on what developer tokens are. Also see our FAQ pages at
>
> >http://www.google.com/support/adwordsapi/http://www.google.com/suppor...
>
> > for other topics related to AdWords API.
>
> > Cheers,
> > Anash
>
> > On Jul 29, 4:12 pm, Mukut  wrote:
>
> > > Sir,
>
> > >  I did not get any response. Please anybody can help me to generate
> > > keyword using Google Adword API in Asp.net 3.5 and c#.
> > > There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
> > > copy all the files and folder in another folder to and run it with
> > > changing in web.config file. And create a Log folder in it. Changes in
> > > web.config file to set values for add key as CompanyName, Email,
> > > Password, ClientEmail but cannot understand what is for
> > > "DeveloperToken". The website is running and create a campaign as
> > > result "Created campaign #-1 successfully!" above the create a
> > > Campaign button. What is the issue to creating a campaign. Please
> > > provide information me, I do not understand. What is the next
> > > procedure. Please help me. I am now in tremendous pressure. Waiting
> > > for your reply.
>
> > > Thanks & Regards
> > >  Mukut Kandar.
>
> > > On Jul 29, 3:20 pm, Mukut  wrote:
>
> > > > Dear Sir,
>
> > > > I am get an instruction word file after unzip the folder
> > > > awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
> > > > application. I am trying to create in a new website application of
> > > > Asp.net 2008 using c#. Please instruct me how to configure or
> > > > integrate for website the google Adword API to generate keyword.
>
> > > > On Jul 29, 1:57 pm, AdWords API Advisor 
> > > > wrote:
>
> > > > > Hi Mukut,
>
> > > > > Check out the AdWords API Dotnet library available 
> > > > > athttp://code.google.com/p/google-api-adwords-dotnet/. It works with 
> > > > > the
> > > > > latest version of AdWords API, has code examples for the common
> > > > > activities in AdWords API, and has an ASP.NET sample as well. The
> > > > > library is written in VS2005, but works fine with VS2008 as well.
>
> > > > > You might also want to 
> > > > > readhttp://code.google.com/apis/adwords/v2009/docs/start.html
> > > > > to learn more about AdWords API itself.
>
> > > > > Cheers,
> > > > > Anash P. Oommen,
> > > > > AdWords API Advisor.
>
> > > > > On Jul 29, 12:31 pm, Mukut  wrote:
>
> > > > > > Dear Sir,
>
> > > > > > I am beginner to integrating Google Adwords API. I want to integrate
> > > > > > the Google Adword API using ASP.NET 2008 and C#. But after so many
> > > > > > search I can't find proper example, instruction or source code to
> > > > > > integrate Google Adwords API. I am so tensed to complete my job.
> > > > > > My requirement is as below ==>
> > > > > > Client will enter their website into the portal. Then using google 
> > > > > > API
> > > > > > my application generate a list of keywords that are relevant to
> > > > > > client's website.
>
> > > > > > After search in web I have got two web services, they are
> > > > > > "AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
> > > > > > integrate google Adwords API to generate keywords using ASP.NET 2008
> > > > > > and c#, please send me instructions and proper guide to integrate it
> > > > > > in my web application. Otherwise I have to leave this job. I am so
> > > > > > tensed for it ...
>
> > > > > > Advanced thanks for the 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


Catch

2010-07-29 Thread phpguy
Yesterday I began running a script that adds 75,000 adgroups.  It
created 860 successfully and then had an "Internal API Server" error.
I restarted the script and it has now created 10,000 roughly and is
still running.

My question:  Is there a way to create a catch that when an internal
server api error occurs, it pauses for 10 minutes and then starts back
up at the last point where it failed in the code?  I don't want to
restart all the code because it burns API units but if I can't do the
first option then I'd be interested in making the whole script start
automatically (prefer starting where it last encountered the error).

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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Dear Sir,
I am trying to create in a new website application of
Asp.net 2008 using c# for generate keyword through Google Adword API
with my user interface. I can not get any example on it. There are I
am get example on campaigning but not in keyword generate. Sir please
provide me an example or full instruction on it. Is it chargeable then
confirm me. I have to do it anyway.

On Jul 29, 4:35 pm, AdWords API Advisor 
wrote:
> Hi Mukut,
>
> Seehttp://www.google.com/support/adwordsapi/bin/answer.py?hl=en&answer=1...
> for details on what developer tokens are. Also see our FAQ pages at
>
> http://www.google.com/support/adwordsapi/http://www.google.com/support/adwordsapi/bin/topic.py?hl=en&topic=233
>
> for other topics related to AdWords API.
>
> Cheers,
> Anash
>
> On Jul 29, 4:12 pm, Mukut  wrote:
>
>
>
> > Sir,
>
> >  I did not get any response. Please anybody can help me to generate
> > keyword using Google Adword API in Asp.net 3.5 and c#.
> > There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
> > copy all the files and folder in another folder to and run it with
> > changing in web.config file. And create a Log folder in it. Changes in
> > web.config file to set values for add key as CompanyName, Email,
> > Password, ClientEmail but cannot understand what is for
> > "DeveloperToken". The website is running and create a campaign as
> > result "Created campaign #-1 successfully!" above the create a
> > Campaign button. What is the issue to creating a campaign. Please
> > provide information me, I do not understand. What is the next
> > procedure. Please help me. I am now in tremendous pressure. Waiting
> > for your reply.
>
> > Thanks & Regards
> >  Mukut Kandar.
>
> > On Jul 29, 3:20 pm, Mukut  wrote:
>
> > > Dear Sir,
>
> > > I am get an instruction word file after unzip the folder
> > > awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
> > > application. I am trying to create in a new website application of
> > > Asp.net 2008 using c#. Please instruct me how to configure or
> > > integrate for website the google Adword API to generate keyword.
>
> > > On Jul 29, 1:57 pm, AdWords API Advisor 
> > > wrote:
>
> > > > Hi Mukut,
>
> > > > Check out the AdWords API Dotnet library available 
> > > > athttp://code.google.com/p/google-api-adwords-dotnet/. It works with the
> > > > latest version of AdWords API, has code examples for the common
> > > > activities in AdWords API, and has an ASP.NET sample as well. The
> > > > library is written in VS2005, but works fine with VS2008 as well.
>
> > > > You might also want to 
> > > > readhttp://code.google.com/apis/adwords/v2009/docs/start.html
> > > > to learn more about AdWords API itself.
>
> > > > Cheers,
> > > > Anash P. Oommen,
> > > > AdWords API Advisor.
>
> > > > On Jul 29, 12:31 pm, Mukut  wrote:
>
> > > > > Dear Sir,
>
> > > > > I am beginner to integrating Google Adwords API. I want to integrate
> > > > > the Google Adword API using ASP.NET 2008 and C#. But after so many
> > > > > search I can't find proper example, instruction or source code to
> > > > > integrate Google Adwords API. I am so tensed to complete my job.
> > > > > My requirement is as below ==>
> > > > > Client will enter their website into the portal. Then using google API
> > > > > my application generate a list of keywords that are relevant to
> > > > > client's website.
>
> > > > > After search in web I have got two web services, they are
> > > > > "AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
> > > > > integrate google Adwords API to generate keywords using ASP.NET 2008
> > > > > and c#, please send me instructions and proper guide to integrate it
> > > > > in my web application. Otherwise I have to leave this job. I am so
> > > > > tensed for it ...
>
> > > > > Advanced thanks for the 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


Re: Problem with Python-AdWords-API using Proxy

2010-07-29 Thread AdWords API Advisor
HI Helmut,

Seems you are correct, looks like AuthToken::Login is not using any
proxies. See 
http://code.google.com/p/google-api-adwords-python-lib/source/browse/trunk/aw_api/AuthToken.py#52
for details.

Could you open an issue at 
http://code.google.com/p/google-api-adwords-python-lib/issues/list
so that we can track and fix the issue?

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Jul 29, 3:29 pm, Helmut Schierer  wrote:
> Using Python AdWords-API Version v201003.
>
> Wanted to connect through a proxy with using the proxy-param in
> "GetCampaignService(url, version, proxy)"
>
> Get error: [Errno socket error] (10061, 'Connection refused')
>
> Looking at the Traceback I can see that the error occurs in
> AuthToken.py in "__Login".
> That method is called in WebService.py in CallMethod:
>
> ...
> #255 headers['authToken'] = Utils.GetAuthToken(headers['email'],
> headers['password'])
> ...
>
> Investigating further it seems to be that GetAuthToken isn't using the
> proxy provided in GetCampaignService().
>
> Is that right?
> If so, is there a solution to solve that problem?
>
> Thanks, Helmut

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

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


Re: Problem to integrate Google Adwords API using ASP.net 3.5 and c#

2010-07-29 Thread AdWords API Advisor
Hi Mukut,

Since this question is being discussed on
http://groups.google.com/group/adwords-api/browse_thread/thread/e271b5f906eea69,
please continue posting on that thread.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Jul 29, 2:02 pm, Mukut Kandar  wrote:
> Dear Sir,
>
> I am beginner to integrating Google Adwords API. I want to integrate
> the Google Adword API using ASP.NET  2008 and C#. But after
> so many
> search I can't find proper example, instruction or source code to
> integrate Google Adwords API. I am so tensed to complete my job.
> My requirement is as below ==>
> Client will enter their website into the portal. Then using google API
> my application generate a list of keywords that are relevant to
> client's website.
>
> After search in web I have got two web services, they are
> "AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
> integrate google Adwords API to generate keywords using 
> ASP.NET
>  2008
> and c#, please send me instructions and proper guide to integrate it
> in my web application. Otherwise I have to leave this job. I am so
> tensed for it ...
>
> Advanced thanks for the 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


Re: Problem to using Google Adwords API

2010-07-29 Thread AdWords API Advisor
Hi Mukut,

See http://www.google.com/support/adwordsapi/bin/answer.py?hl=en&answer=15113
for details on what developer tokens are. Also see our FAQ pages at

http://www.google.com/support/adwordsapi/
http://www.google.com/support/adwordsapi/bin/topic.py?hl=en&topic=233

for other topics related to AdWords API.

Cheers,
Anash

On Jul 29, 4:12 pm, Mukut  wrote:
> Sir,
>
>  I did not get any response. Please anybody can help me to generate
> keyword using Google Adword API in Asp.net 3.5 and c#.
> There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
> copy all the files and folder in another folder to and run it with
> changing in web.config file. And create a Log folder in it. Changes in
> web.config file to set values for add key as CompanyName, Email,
> Password, ClientEmail but cannot understand what is for
> "DeveloperToken". The website is running and create a campaign as
> result "Created campaign #-1 successfully!" above the create a
> Campaign button. What is the issue to creating a campaign. Please
> provide information me, I do not understand. What is the next
> procedure. Please help me. I am now in tremendous pressure. Waiting
> for your reply.
>
> Thanks & Regards
>  Mukut Kandar.
>
> On Jul 29, 3:20 pm, Mukut  wrote:
>
>
>
> > Dear Sir,
>
> > I am get an instruction word file after unzip the folder
> > awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
> > application. I am trying to create in a new website application of
> > Asp.net 2008 using c#. Please instruct me how to configure or
> > integrate for website the google Adword API to generate keyword.
>
> > On Jul 29, 1:57 pm, AdWords API Advisor 
> > wrote:
>
> > > Hi Mukut,
>
> > > Check out the AdWords API Dotnet library available 
> > > athttp://code.google.com/p/google-api-adwords-dotnet/. It works with the
> > > latest version of AdWords API, has code examples for the common
> > > activities in AdWords API, and has an ASP.NET sample as well. The
> > > library is written in VS2005, but works fine with VS2008 as well.
>
> > > You might also want to 
> > > readhttp://code.google.com/apis/adwords/v2009/docs/start.html
> > > to learn more about AdWords API itself.
>
> > > Cheers,
> > > Anash P. Oommen,
> > > AdWords API Advisor.
>
> > > On Jul 29, 12:31 pm, Mukut  wrote:
>
> > > > Dear Sir,
>
> > > > I am beginner to integrating Google Adwords API. I want to integrate
> > > > the Google Adword API using ASP.NET 2008 and C#. But after so many
> > > > search I can't find proper example, instruction or source code to
> > > > integrate Google Adwords API. I am so tensed to complete my job.
> > > > My requirement is as below ==>
> > > > Client will enter their website into the portal. Then using google API
> > > > my application generate a list of keywords that are relevant to
> > > > client's website.
>
> > > > After search in web I have got two web services, they are
> > > > "AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
> > > > integrate google Adwords API to generate keywords using ASP.NET 2008
> > > > and c#, please send me instructions and proper guide to integrate it
> > > > in my web application. Otherwise I have to leave this job. I am so
> > > > tensed for it ...
>
> > > > Advanced thanks for the 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


Problem to integrate Google Adwords API using ASP.net 3.5 and c#

2010-07-29 Thread Mukut Kandar
Dear Sir,

I am beginner to integrating Google Adwords API. I want to integrate
the Google Adword API using ASP.NET  2008 and C#. But after
so many
search I can't find proper example, instruction or source code to
integrate Google Adwords API. I am so tensed to complete my job.
My requirement is as below ==>
Client will enter their website into the portal. Then using google API
my application generate a list of keywords that are relevant to
client's website.

After search in web I have got two web services, they are
"AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
integrate google Adwords API to generate keywords using ASP.NET
 2008
and c#, please send me instructions and proper guide to integrate it
in my web application. Otherwise I have to leave this job. I am so
tensed for it ...

Advanced thanks for the 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


Problem with Python-AdWords-API using Proxy

2010-07-29 Thread Helmut Schierer
Using Python AdWords-API Version v201003.

Wanted to connect through a proxy with using the proxy-param in
"GetCampaignService(url, version, proxy)"

Get error: [Errno socket error] (10061, 'Connection refused')

Looking at the Traceback I can see that the error occurs in
AuthToken.py in "__Login".
That method is called in WebService.py in CallMethod:

...
#255 headers['authToken'] = Utils.GetAuthToken(headers['email'],
headers['password'])
...

Investigating further it seems to be that GetAuthToken isn't using the
proxy provided in GetCampaignService().

Is that right?
If so, is there a solution to solve that problem?

Thanks, Helmut

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

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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Sir,

 I did not get any response. Please anybody can help me to generate
keyword using Google Adword API in Asp.net 3.5 and c#.
There are a folder SampleWebSite in awapi_dotnet_lib_9.0.0. And I am
copy all the files and folder in another folder to and run it with
changing in web.config file. And create a Log folder in it. Changes in
web.config file to set values for add key as CompanyName, Email,
Password, ClientEmail but cannot understand what is for
"DeveloperToken". The website is running and create a campaign as
result "Created campaign #-1 successfully!" above the create a
Campaign button. What is the issue to creating a campaign. Please
provide information me, I do not understand. What is the next
procedure. Please help me. I am now in tremendous pressure. Waiting
for your reply.

Thanks & Regards
 Mukut Kandar.

On Jul 29, 3:20 pm, Mukut  wrote:
> Dear Sir,
>
> I am get an instruction word file after unzip the folder
> awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
> application. I am trying to create in a new website application of
> Asp.net 2008 using c#. Please instruct me how to configure or
> integrate for website the google Adword API to generate keyword.
>
> On Jul 29, 1:57 pm, AdWords API Advisor 
> wrote:
>
>
>
> > Hi Mukut,
>
> > Check out the AdWords API Dotnet library available 
> > athttp://code.google.com/p/google-api-adwords-dotnet/. It works with the
> > latest version of AdWords API, has code examples for the common
> > activities in AdWords API, and has an ASP.NET sample as well. The
> > library is written in VS2005, but works fine with VS2008 as well.
>
> > You might also want to 
> > readhttp://code.google.com/apis/adwords/v2009/docs/start.html
> > to learn more about AdWords API itself.
>
> > Cheers,
> > Anash P. Oommen,
> > AdWords API Advisor.
>
> > On Jul 29, 12:31 pm, Mukut  wrote:
>
> > > Dear Sir,
>
> > > I am beginner to integrating Google Adwords API. I want to integrate
> > > the Google Adword API using ASP.NET 2008 and C#. But after so many
> > > search I can't find proper example, instruction or source code to
> > > integrate Google Adwords API. I am so tensed to complete my job.
> > > My requirement is as below ==>
> > > Client will enter their website into the portal. Then using google API
> > > my application generate a list of keywords that are relevant to
> > > client's website.
>
> > > After search in web I have got two web services, they are
> > > "AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
> > > integrate google Adwords API to generate keywords using ASP.NET 2008
> > > and c#, please send me instructions and proper guide to integrate it
> > > in my web application. Otherwise I have to leave this job. I am so
> > > tensed for it ...
>
> > > Advanced thanks for the 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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Dear Sir,

I am get an instruction word file after unzip the folder
awapi_dotnet_lib_9.0.0.zip. But I think it is for an windows
application. I am trying to create in a new website application of
Asp.net 2008 using c#. Please instruct me how to configure or
integrate for website the google Adword API to generate keyword.

On Jul 29, 1:57 pm, AdWords API Advisor 
wrote:
> Hi Mukut,
>
> Check out the AdWords API Dotnet library available 
> athttp://code.google.com/p/google-api-adwords-dotnet/. It works with the
> latest version of AdWords API, has code examples for the common
> activities in AdWords API, and has an ASP.NET sample as well. The
> library is written in VS2005, but works fine with VS2008 as well.
>
> You might also want to 
> readhttp://code.google.com/apis/adwords/v2009/docs/start.html
> to learn more about AdWords API itself.
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Jul 29, 12:31 pm, Mukut  wrote:
>
>
>
> > Dear Sir,
>
> > I am beginner to integrating Google Adwords API. I want to integrate
> > the Google Adword API using ASP.NET 2008 and C#. But after so many
> > search I can't find proper example, instruction or source code to
> > integrate Google Adwords API. I am so tensed to complete my job.
> > My requirement is as below ==>
> > Client will enter their website into the portal. Then using google API
> > my application generate a list of keywords that are relevant to
> > client's website.
>
> > After search in web I have got two web services, they are
> > "AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
> > integrate google Adwords API to generate keywords using ASP.NET 2008
> > and c#, please send me instructions and proper guide to integrate it
> > in my web application. Otherwise I have to leave this job. I am so
> > tensed for it ...
>
> > Advanced thanks for the 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


Re: Problem to using Google Adwords API

2010-07-29 Thread Mukut
Thanks for helping me.
I am download a fie awapi_dotnet_lib_9.0.0.zip. But I think it is a
windows application.
And there are code example for the common activities in Adwords API.
But I am not found for generate keyword code with an interface of
using Google Adwords API. All the pages are Class pages.
Please help on interface wise source code.

On Jul 29, 1:57 pm, AdWords API Advisor 
wrote:
> Hi Mukut,
>
> Check out the AdWords API Dotnet library available 
> athttp://code.google.com/p/google-api-adwords-dotnet/. It works with the
> latest version of AdWords API, has code examples for the common
> activities in AdWords API, and has an ASP.NET sample as well. The
> library is written in VS2005, but works fine with VS2008 as well.
>
> You might also want to 
> readhttp://code.google.com/apis/adwords/v2009/docs/start.html
> to learn more about AdWords API itself.
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Jul 29, 12:31 pm, Mukut  wrote:
>
>
>
> > Dear Sir,
>
> > I am beginner to integrating Google Adwords API. I want to integrate
> > the Google Adword API using ASP.NET 2008 and C#. But after so many
> > search I can't find proper example, instruction or source code to
> > integrate Google Adwords API. I am so tensed to complete my job.
> > My requirement is as below ==>
> > Client will enter their website into the portal. Then using google API
> > my application generate a list of keywords that are relevant to
> > client's website.
>
> > After search in web I have got two web services, they are
> > "AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
> > integrate google Adwords API to generate keywords using ASP.NET 2008
> > and c#, please send me instructions and proper guide to integrate it
> > in my web application. Otherwise I have to leave this job. I am so
> > tensed for it ...
>
> > Advanced thanks for the 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


API Guidance.

2010-07-29 Thread Adz
We are looking at Google AdWords API for our website.

What is the actually procedure?

Can we replicate all the AdWords interface into our software? Or is
there only a certain amount of fields we can populate with our
software and AdWords is still controlled through the AdWords
dashboard?

I have looked around the AdWords API and there is no real defining
details on what we can and can't not do.

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

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


Re: Problem to using Google Adwords API

2010-07-29 Thread AdWords API Advisor
Hi Mukut,

Check out the AdWords API Dotnet library available at
http://code.google.com/p/google-api-adwords-dotnet/. It works with the
latest version of AdWords API, has code examples for the common
activities in AdWords API, and has an ASP.NET sample as well. The
library is written in VS2005, but works fine with VS2008 as well.

You might also want to read 
http://code.google.com/apis/adwords/v2009/docs/start.html
to learn more about AdWords API itself.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Jul 29, 12:31 pm, Mukut  wrote:
> Dear Sir,
>
> I am beginner to integrating Google Adwords API. I want to integrate
> the Google Adword API using ASP.NET 2008 and C#. But after so many
> search I can't find proper example, instruction or source code to
> integrate Google Adwords API. I am so tensed to complete my job.
> My requirement is as below ==>
> Client will enter their website into the portal. Then using google API
> my application generate a list of keywords that are relevant to
> client's website.
>
> After search in web I have got two web services, they are
> "AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
> integrate google Adwords API to generate keywords using ASP.NET 2008
> and c#, please send me instructions and proper guide to integrate it
> in my web application. Otherwise I have to leave this job. I am so
> tensed for it ...
>
> Advanced thanks for the 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


Problem to using Google Adwords API

2010-07-29 Thread Mukut
Dear Sir,

I am beginner to integrating Google Adwords API. I want to integrate
the Google Adword API using ASP.NET 2008 and C#. But after so many
search I can't find proper example, instruction or source code to
integrate Google Adwords API. I am so tensed to complete my job.
My requirement is as below ==>
Client will enter their website into the portal. Then using google API
my application generate a list of keywords that are relevant to
client's website.

After search in web I have got two web services, they are
"AccountService.wsdl" and "KeywordToolService.wsdl". But how can I
integrate google Adwords API to generate keywords using ASP.NET 2008
and c#, please send me instructions and proper guide to integrate it
in my web application. Otherwise I have to leave this job. I am so
tensed for it ...

Advanced thanks for the 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