Re: Keyword missing from Url report

2010-09-02 Thread Susan Ostroski
Anash,

I'm not sure what you mean about a sanitized request.  I have a client
table with all of the client account number that I cycle through.  The
first doesn't get the keyword, the second does and the third does
not.

On Sep 2, 2:15 pm, Susan Ostroski  wrote:
> my $email = '@x.com';
> my $password = 'xx';
> my $developer_token = 'x';
> my $url = 'https://adwords.google.com/api/adwords/v13/ReportService';
> my $wsdl = $url . '?wsdl';
> print "$client_email - $client \n";
> my $service = 
> SOAP::Lite->service($wsdl)->autotype(0)->readable(1)->proxy($url);
>
> $service->on_fault(sub {
>                      my $response = $ARG[1];
>                      die('The following SOAP fault occurred:', "\n",
>                          '  faultcode: ', $response->faultcode(),
> "\n",
>                          '  faultstring: ', $response->faultstring(),
> "\n")
>                    });
> # SOAP::Lite->import(+trace => 'debug');
> # Define SOAP headers.
> my @headers = (
>   SOAP::Header->name('email' => $email),
>   SOAP::Header->name('password' => $password),
>   SOAP::Header->name('clientEmail' => $client_email),
>   SOAP::Header->name('useragent' => $client),
>   SOAP::Header->name('developerToken' => $developer_token),
> );
>
> my $report_job = SOAP::Data->name('job' =>
>   {'selectedReportType' => 'Url',
>    'aggregationTypes' => ['Daily'],
>    'startDay' => $startdate,
>    'endDay' => $enddate,
>    'selectedColumns' => [qw(Campaign AdGroup Keyword
> KeywordTypeDisplay DestinationURL
>                                 KeywordStatus FirstPageCpc QualityScore 
> MaximumCPC
>                                 MaxContentCPC PreferredCPM AdGroupStatus 
> CampaignStatus
>                                 Impressions Clicks CTR CPC Cost 
> AveragePosition
>                                 CostPerConverstion CostPerTransaction 
> TotalConversionValue)]
>
> On Sep 2, 4:54 am, AdWords API Advisor 
> wrote:
>
> > Hi Susan,
>
> > Can you please post the sanitized SOAP requests for both the clients?
> > I can ask the AdWords team to investigate your issue.
>
> > Cheers,
> > Anash P. Oommen,
> > AdWords API Advisor.
>
> > On Sep 1, 7:36 pm, Susan Ostroski  wrote:
>
> > > I'm using the Url report to get our clients data and I'm getting a
> > > different result with two clients.
>
> > > My job request
>
> > > my $report_job = SOAP::Data->name('job' =>
> > >   {'selectedReportType' => 'Url',
> > >    'aggregationTypes' => ['Daily'],
> > >    'startDay' => $startdate,
> > >    'endDay' => $enddate,
> > >    'selectedColumns' => [qw(Campaign AdGroup Keyword
> > > KeywordTypeDisplay DestinationURL
> > >                                 KeywordStatus FirstPageCpc QualityScore 
> > > MaximumCPC
> > >                                 MaxContentCPC PreferredCPM AdGroupStatus 
> > > CampaignStatus
> > >                                 Impressions Clicks CTR CPC Cost 
> > > AveragePosition
> > >                                 CostPerConverstion CostPerTransaction 
> > > TotalConversionValue)]
>
> > > One client I don't get the keyword and I get siteKwStatus. The other
> > > client I get Keyword but not sitKwStatus.
>
> > > Has anyone seen this?
>
> > > Thanks for any 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: Keyword missing from Url report

2010-09-02 Thread Susan Ostroski

my $email = 'x...@x.com';
my $password = 'xx';
my $developer_token = 'x';
my $url = 'https://adwords.google.com/api/adwords/v13/ReportService';
my $wsdl = $url . '?wsdl';
print "$client_email - $client \n";
my $service = SOAP::Lite->service($wsdl)->autotype(0)->readable(1)-
>proxy($url);
$service->on_fault(sub {
 my $response = $ARG[1];
 die('The following SOAP fault occurred:', "\n",
 '  faultcode: ', $response->faultcode(),
"\n",
 '  faultstring: ', $response->faultstring(),
"\n")
   });
# SOAP::Lite->import(+trace => 'debug');
# Define SOAP headers.
my @headers = (
  SOAP::Header->name('email' => $email),
  SOAP::Header->name('password' => $password),
  SOAP::Header->name('clientEmail' => $client_email),
  SOAP::Header->name('useragent' => $client),
  SOAP::Header->name('developerToken' => $developer_token),
);

my $report_job = SOAP::Data->name('job' =>
  {'selectedReportType' => 'Url',
   'aggregationTypes' => ['Daily'],
   'startDay' => $startdate,
   'endDay' => $enddate,
   'selectedColumns' => [qw(Campaign AdGroup Keyword
KeywordTypeDisplay DestinationURL
KeywordStatus FirstPageCpc QualityScore 
MaximumCPC
MaxContentCPC PreferredCPM AdGroupStatus 
CampaignStatus
Impressions Clicks CTR CPC Cost AveragePosition
CostPerConverstion CostPerTransaction 
TotalConversionValue)]

On Sep 2, 4:54 am, AdWords API Advisor 
wrote:
> Hi Susan,
>
> Can you please post the sanitized SOAP requests for both the clients?
> I can ask the AdWords team to investigate your issue.
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Sep 1, 7:36 pm, Susan Ostroski  wrote:
>
> > I'm using the Url report to get our clients data and I'm getting a
> > different result with two clients.
>
> > My job request
>
> > my $report_job = SOAP::Data->name('job' =>
> >   {'selectedReportType' => 'Url',
> >    'aggregationTypes' => ['Daily'],
> >    'startDay' => $startdate,
> >    'endDay' => $enddate,
> >    'selectedColumns' => [qw(Campaign AdGroup Keyword
> > KeywordTypeDisplay DestinationURL
> >                                 KeywordStatus FirstPageCpc QualityScore 
> > MaximumCPC
> >                                 MaxContentCPC PreferredCPM AdGroupStatus 
> > CampaignStatus
> >                                 Impressions Clicks CTR CPC Cost 
> > AveragePosition
> >                                 CostPerConverstion CostPerTransaction 
> > TotalConversionValue)]
>
> > One client I don't get the keyword and I get siteKwStatus. The other
> > client I get Keyword but not sitKwStatus.
>
> > Has anyone seen this?
>
> > Thanks for any 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: Problems with API-developer MCC account

2010-09-02 Thread AdWords API Advisor
Hi Liran,

When creating an MCC account you must use a new login and password,
not the login and password of your existing AdWords account.

Best,
- Eric Koleda, AdWords API Team

On Sep 1, 4:36 pm, LC  wrote:
> Hi,
>
> I have a regular Adwords account. In order to use API, I want to
> create an MCC account. When I go to the MCC login page 
> (http://www.google.com/intl/en/adwords/myclientcenter/) and try the "sign up
> now" button, it tells me that I already have an MCC account.
>
> However, when I view my account, I don't see any MCC tab, nor do I see
> the "API center" label under my "My Account" tab. Where did I go
> wrong?
>
> Liran

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Download report without saving

2010-09-02 Thread AdWords API Advisor
Hi Robert,

The ability to download a report to memory has been implemented, but
is currently only available in trunk.

  
http://code.google.com/p/google-api-adwords-php/source/browse/trunk/src/Google/Api/Ads/AdWords/Util/ReportUtils.php#56

This code will be incorporated in the next release, but you can use
the version from trunk immediately if you wish.

Best,
- Eric Koleda, AdWords API Team

On Sep 1, 2:09 am, "robert.johans...@adwire.se"
 wrote:
> Does someone have an idea?
>
> On 28 Aug, 11:29, "robert.johans...@adwire.se"
>
>
>
>  wrote:
> > Hi Anash,
>
> > Thank you for your quick response! However, I can't make the code
> > work. The $result variable remains empty, but when I check the
> > $httpCode variable I can see that it has a value of 200 which
> > indicates that nothing went wrong in the request. Below is a part of
> > the code that I'm trying to run.
>
> >   public static function DownloadReport($clientId, $reportDefintionId,
> > $path = NULL,
> >       AdWordsUser $user, $server = NULL) {
> >     $url = sprintf('%s/api/adwords/reportdownload?__rd=%s',
> >          isset($server) ? $server : $user->GetDefaultServer(),
> >          $reportDefintionId);
>
> >     // The authorization token and client identifier must be set as
> > HTTP
> >     // headers.
> >     $headers = array();
> >     $headers[]= 'Authorization: GoogleLogin auth=' . $user->GetAuthToken();
>
> >     $headers[] = 'clientCustomerId: ' . $clientId;
>
> >                 $ch = curl_init($url);
> >     curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
> >     curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
> >     curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
> >     curl_setopt($ch, CURLOPT_HEADER, 0);
> >     curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
> >     if (defined('HTTP_PROXY_HOST') && HTTP_PROXY_HOST != '') {
> >       curl_setopt($ch, CURLOPT_PROXY, HTTP_PROXY_HOST);
> >     }
> >     if (defined('HTTP_PROXY_PORT') && HTTP_PROXY_PORT != '') {
> >       curl_setopt($ch, CURLOPT_PROXYPORT, HTTP_PROXY_PORT);
> >     }
> >     if (defined('HTTP_PROXY_USER') && defined('HTTP_PROXY_PASSWORD')
> >         && HTTP_PROXY_USER != '' && HTTP_PROXY_PASSWORD != '') {
> >       curl_setopt($ch, CURLOPT_PROXYUSERPWD, HTTP_PROXY_USER . ':'
> >           . HTTP_PROXY_PASSWORD);
> >     }
>
> >     $result = curl_exec($ch);
> >     $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
> >     $error = curl_error($ch);
> >     $downloadSize = curl_getinfo($ch, CURLINFO_SIZE_DOWNLOAD);
> >     curl_close($ch);
>
> >     if ($httpCode != 200) {
> >       throw new ReportDownloadException($error, $httpCode);
> >     }
>
> >     $matches = array();
> >     if (preg_match(ReportUtils::$REPORT_ERROR_MESSAGE_REGEX, $result,
> > $matches)) {
> >       echo new ReportDownloadException($matches[1]);
> >     }
>
> >     print "Result: ".$result.", ".$downloadSize.", ".$error.", ".
> > $httpCode;
> >   }
>
> > }
>
> > On 24 Aug, 13:23, AdWords API Advisor 
> > wrote:
>
> > > Hi Robert,
>
> > > The code to achieve this is quite similar 
> > > tohttp://code.google.com/p/google-api-adwords-php/source/browse/trunk/e
> > > If you pass a null to $path, then ReportUtils::DownloadReport returns
> > > you the actual report contents. 
> > > Seehttp://code.google.com/p/google-api-adwords-php/source/browse/trunk/s...
> > > for more details.
>
> > > Cheers,
> > > Anash P. Oommen,
> > > AdWords API Advisor.
>
> > > On Aug 23, 12:31 am, "robert.johans...@adwire.se"
>
> > >  wrote:
> > > > Hi,
>
> > > > In the PHP client library I can find an example of how to download a
> > > > report created by the new reportDefinitionService. But how can I get
> > > > the report without saving it as a file, but instead open it in memory
> > > > (like with the old reports)? There is no need for me to save it as a
> > > > file, as I just want to save the data into my database.
>
> > > > Thank you in advance!- Dölj citerad text -
>
> > > - Visa citerad text -- Dölj citerad text -
>
> > - Visa citerad text -

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Missing API Geotarget codes that exists on Google Adwords

2010-09-02 Thread AdWords API Advisor
Hi Yaron,

The documentation team is currently working on updating the code
lists, and they hope to have update geo codes out in the near future.

Best,
- Eric Koleda, AdWords API Team

On Aug 31, 8:56 am, "y...@esearchvision.com" 
wrote:
> Hello,
>
> There are some targets that exists on adwords web interface but are
> not listed in the API reference.
>
> I.E. Regions in Portugal Country. you can target those via the
> interface but no codes are avail through the API ref.
>
> Do you have an updated API list of target codes ?
>
> Thanks
>
> Yaron
> Esearchvision

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Slow Performance of BulkMutateJob in uploading keywords

2010-09-02 Thread AdWords API Advisor
Hi,

Unfortunately we don't provide a public roadmap, but news about
features is posted to the AdWords API Blog:

  http://adwordsapi.blogspot.com/

Best,
- Eric

On Aug 31, 6:15 am, bhealy  wrote:
> Thanks for the reply Eric - really appreciate your help.
>
> Last question on this-: Do you guys publish a roadmap for the API that
> I could get visibility of ?
> Something that contains your plans for new functionality, along with
> go live dates ?
>
> On Aug 9, 3:05 pm, AdWords API Advisor 
> wrote:
>
>
>
> > Hi Bobby,
>
> > The AdWords API is the only API available, so there is nothing else to
> > compare it with in regards to speed.  You can try using the
> > AdGroupCriterionService instead of the BulkMutateJobService, but I
> > don't know if you'll see a dramatic speed difference.
>
> > Best,
> > - Eric
>
> > On Aug 9, 6:21 am, bobby  wrote:
>
> > > Thanks Eric, yes I understand that - but what I was really asking was
> > > "what is the fastest
> > > way to upload 300,000 keywords?".
>
> > > In other words - is the ADWORDS API the fastest way to do it, or is
> > > there some other form
> > > of transfer that I can use?
>
> > > Currently 300,000 keywords is taking me nearly 12 hours to upload -
> > > which is not an acceptable
> > > performance level for my customer.
>
> > > Our business want to operate in a much more dynamic way with ADWORDS,
> > > and we were hoping the API
> > > would be a way to accomplish that, but so far it's looking like -
> > > while the flexibility and
> > > the potential to automate is there - that we are prevented from
> > > scaling up due to the performance.
>
> > > Any pointers you can provide would be like water to a dry duck at this
> > > stage.
>
> > > Thanks,
> > > Bobby
>
> > > On Aug 6, 10:12 pm, AdWords API Advisor 
> > > wrote:
>
> > > > Hi Bobby,
>
> > > > The BulkMutateJobService does not offer any speed benefits over the
> > > > regular synchronous services.  There is the possibility of concurrent
> > > > processing of operations, but in general you shouldn't assume that
> > > > operations will process any faster using the BMJS.  The BMJS is
> > > > designed for uploading large numbers of entities, such as keywords and
> > > > ads, but it should not be used for time-sensitive changes.
>
> > > > Best,
> > > > - Eric Koleda, AdWords API Team
>
> > > > On Aug 5, 8:43 am, bobby healy 
> > > > wrote:
>
> > > > > OK, I've searched everywhere and there doesn't seem to be a single,
> > > > > definitive answer to this question-:
>
> > > > > "How do I bulk upload about 300,000 keywords as quickly as possible ?"
>
> > > > > Currently this takes me about 24 hours using the following code. Is
> > > > > there any faster way to do this ?
>
> > > > >                 AdGroupAd textAdGroupAd = new AdGroupAd();
>
> > > > > textAdGroupAd.setAdGroupId(g.getAdGroupID());
> > > > > textAdGroupAd.setAd(textAd);
> > > > >                     AdGroupAdOperation textAdGroupAdOperation = new
> > > > > AdGroupAdOperation();
> > > > >                     textAdGroupAdOperation.setOperand(textAdGroupAd);
> > > > >                     textAdGroupAdOperation.setOperator(Operator.ADD);
> > > > >                    ... add some exemptions
> > > > >                     l.adGroupAdOperations.add(textAdGroupAdOperation);
> > > > >                 BulkMutateJobServiceInterface bulkMutateJobService =
> > > > > user.getService(
>
> > > > > AdWordsService.V201003.BULK_MUTATE_JOB_SERVICE);
> > > > >                 // Set scope of jobs.
> > > > >                 EntityId scopingEntityId = new
> > > > > EntityId(EntityIdType.CAMPAIGN_ID, c.getCampaignID());
> > > > >                 long jobId = createAndBeginJob(bulkMutateJobService,
> > > > > scopingEntityId, e.getValue().adGroupAdOperations.toArray(new
> > > > > AdGroupAdOperation[0]));
> > > > >                 OperationResult[] operationResults =
> > > > > retrieveResultsFromJob(bulkMutateJobService, jobId, null);
>
> > > > >     private static OperationResult[] retrieveResultsFromJob(
> > > > >             BulkMutateJobServiceInterface bulkMutateJobService, long
> > > > > jobId, ProgressDialog p)
> > > > >             throws InterruptedException, IOException {
> > > > >         List operationResultsByPart = new
> > > > > ArrayList();
> > > > >         BulkMutateJob job = null;
>
> > > > >         // Create selector.
> > > > >         BulkMutateJobSelector selector = new BulkMutateJobSelector();
> > > > >         selector.setJobIds(new long[]{jobId});
>
> > > > >         // Loop while waiting for the job to complete.
> > > > >         int percent = 1;
> > > > >         do {
> > > > >             BulkMutateJob[] jobs = bulkMutateJobService.get(selector);
> > > > >             job = jobs[0];
>
> > > > >             System.out.println("Bulk mutate job with id \"" +
> > > > > job.getId() + "\" has status \"" + job.getStatus() + "\".");
>
> > > > >             if (job.getStatus().equals(BasicJobStatus.PENDING) ||
> > > > > job.getStatus().equals(BasicJob

Re: more info about SEARCH_SHARE, AD_SHARE and EXTRACTED_FROM_WEBPAGE

2010-09-02 Thread AdWords API Advisor
Hi,

That is my understanding, yes.

Best,
- Eric

On Aug 27, 12:55 am, xero  wrote:
> Hi Eric,
>
>   As to your answer 1, I suppose:
> 1. for "Search Share" of a keyword, an Ad with some URL served for
> that keyword must exist.
>
> 2. If I have multiple URLs for multiple Ads, "Search Share" would be
> calculated towards all those related URLs.
>
> Is my understanding correct?
>
> On Aug 27, 2:35 am, AdWords API Advisor 
> wrote:
>
>
>
> > Hi,
>
> > To address your questions:
>
> > 1) This is based off of the URLs used in the ads in your AdWords
> > account.
>
> > 2) That is my understanding, yes.
>
> > Best,
> > - Eric
>
> > On Aug 25, 11:21 pm, xero  wrote:
>
> > > Hi Eric,
>
> > >   Thanks for the quick reply!
>
> > >   According to your answers, I've the following further questions:
> > > 1. "Search share is how often your web page was shown as an organic
> > > search results for the keyword idea."
> > > Where does the referred "your web page" come from? Settings in Adwords
> > > MCC or parameters to TargetingIdeaService?
>
> > > 2. I understand now that "ad share" and "search share" are historical
> > > statistics, not estimates. Is it correct?
>
> > > On Aug 26, 6:38 am, AdWords API Advisor 
> > > wrote:
>
> > > > Hi,
>
> > > > To address your questions:
>
> > > > 1) All of your ads that are served for that keyword are counted
> > > > towards the ad share.  If you don't have any ads that target that
> > > > keyword you can't have an ad share.
>
> > > > 2) Search share is how often your web page was shown as an organic
> > > > search results for the keyword idea.
>
> > > > 3) EXTRACTED_FROM_WEBPAGE is not available for all keywords, but I
> > > > don't have more information about under what circumstances it is.
>
> > > > Best,
> > > > - Eric Koleda, AdWords API Team
>
> > > > On Aug 25, 1:31 am, xero  wrote:
>
> > > > > Hi,
>
> > > > >   I did some tests against v200909 TargetingIdeaService in Adwords API
> > > > > production environment recently, and found that SEARCH_SHARE, AD_SHARE
> > > > > and EXTRACTED_FROM_WEBPAGE are all empty.
>
> > > > >   Here're a few questions:
> > > > > 1. For AD_SHARE(Represents the percentage of the time that the
> > > > > advertiser's ad (if applicable) was shown for queries associated with
> > > > > the given keyword idea.):
> > > > > Does that mean AD_SHARE is only available after I create an Ad
> > > > > containing the keyword?
> > > > > If yes, what will happen if I have 2 or more Ads containing the same
> > > > > keywords?
>
> > > > > 2. For SEARCH_SHARE(Represents the percentage of the time that the
> > > > > advertiser's webpage (if applicable) was shown for queries associated
> > > > > with the given keyword idea):
> > > > > Does that mean SEARCH_SHARE is only available after I create an Ad
> > > > > containing the keyword?
> > > > > If yes, what will happen if I have 2 or more Ads containing the same
> > > > > keywords?
>
> > > > > 3. For EXTRACTED_FROM_WEBPAGE(Represents the webpage from which this
> > > > > keyword idea was extracted (if applicable.)):
> > > > > I've retrieved 800 keyword ideas for a seed keyword list. For each
> > > > > keyword, EXTRACTED_FROM_WEBPAGE is requested. But none of them have
> > > > > some real value for attribute EXTRACTED_FROM_WEBPAGE. Is that normal?

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


Ad Parameters Update Lag

2010-09-02 Thread jonbarber
Can you advise on the lag for updating ad parameters please ? How long
should it take for the update to appear ? For the keyword text "cheap
flight madrid" we've performed an update that seemed to work :

[02 Sep 2010 16:33:47,080 - DEBUG]
http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://
www.w3.org/2001/XMLSchema-instance">http://schemas.xmlsoap.org/soap/actor/next";
soapenv:mustUnderstand="0" xmlns:ns1="https://adwords.google.com/api/
adwords/cm/v200909">*-***-4796AdWords API Java Client Library -
v8.1.0 - DMC Digitalfalsehttps://adwords.google.com/
api/adwords/cm/v200909">SET139082693417223091£591
[02 Sep 2010 16:33:47,093 - DEBUG]
http://schemas.xmlsoap.org/soap/
envelope/">4701e5d548c548810b187f1fc48a824061139082693417223091£591

This should replace the default of £56 with £59. If we then query the
ad parameter programmatically it seems to have worked :

[02 Sep 2010 16:47:58,918 - DEBUG]
http://schemas.xmlsoap.org/soap/envelope/";
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; xmlns:xsi="http://
www.w3.org/2001/XMLSchema-instance">http://schemas.xmlsoap.org/soap/actor/next";
soapenv:mustUnderstand="0" xmlns:ns1="https://adwords.google.com/api/
adwords/cm/v200909">*-***-4796***AdWords API Java Client Library -
v8.1.0 - DMC Digitalfalsehttps://adwords.google.com/
api/adwords/cm/v200909">1390826934
[02 Sep 2010 16:47:58,941 - DEBUG]
http://schemas.xmlsoap.org/soap/
envelope/">fdf1a6c18019bb9eef27571bde7f998a14451https://adwords.google.com/
api/adwords/cm/v200909">139082693417223091£591...

But we never actually see that change in the ad itself.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 locate API info from within My Client Center

2010-09-02 Thread Swish
Not sure if this is a bug or what, but I have followed all steps for
API access and received an email telling me access was approved, but
when I visit the "Adwords API Center" in MCC nothing is shown. I have
tried multiple browsers and get the same result. See screenshot:
http://tinyurl.com/3x2kkpg

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


bulk mutate operations and TOO_MANY_JOBS_IN_QUEUE

2010-09-02 Thread nuri
Hi,

I have got "too many jobs in queue" exceptions and  I've got the
dramatic answer for a programmer who got same exception.

http://groups.google.com/group/adwords-api/browse_thread/thread/c176528c67469ad6/dfc81e8c8e240726?lnk=gst&q=TOO_MANY_JOBS_IN_QUEUE#dfc81e8c8e240726

I think that we've got the basic programming question;  how can I
fetch jobs from queue, and how can I kill them? If it is not good
question (of course it could be new programming patterns for bulk
operations), what should I ask?

Imagine; machine stop suddenly (by any reason) and some jobs has been
queued to the jobs queue. Solutions?


Thanks in advance.

Regards
Nuri Yılmaz

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Reports fields no longer need /1000000

2010-09-02 Thread okiebug1...@gmail.com
I'd rather the team provide daily report aggregation when requesting
multiple days, than a patch for this cost issue :)  Hint, hint,
smile...

On Sep 2, 6:44 am, AdWords API Advisor 
wrote:
> Hi David,
>
> AdWords API should return all costs in micros (i.e. multiplied by
> 100), looks like this issue is specific to v102003 reports . I've
> reported this issue to the AdWords team, I'll update you once I hear
> from them.
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Aug 31, 8:02 pm, "okiebug1...@gmail.com" 
> wrote:
>
>
>
> > Hello,
> > I wanted to verify the treatment of money fields in all the report
> > definitions.  After getting the definitions and supporting database
> > tables set up for our clients and massaging the returned fields to
> > include Campaign and AdGroup names, I noticed we no longer need to
> > divide by 100 for the money fields.  I failed to find this
> > documented, so I wanted to get the official statement, if I overlooked
> > the documentation, please post link for my education.
>
> > In the campaign management API, V200909, I was still performing this
> > division when pulling down bid data.  Did the V201003 release of
> > campaign management related methods also removed this mandate?
>
> > Thanks in advance,
> > David

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

2010-09-02 Thread okiebug1...@gmail.com
Thanks much for this info Ewan, this will speed up my report
processing in a big way.  The mandate to retrieve the names of the
keywords' Campaign and AdGroup via resolving the AdGroupID slows down
the report run considerably.

I'm now more hopeful we will soon have the ability to select multiple
days and a daily aggregation.

David

On Sep 2, 7:07 am, ewan  wrote:
> Hi Eric,
>
> I've noticed that some of these fields are in fact available even
> though they don't appear in the list returned from the Report
> Definition Service.  For example, it is possible to add a "CampaignId"
> and "CampaignName" field to the Keyword Performance Report and the
> correct results are returned.
>
> I've also noticed that some other fields don't actually return an
> error when they aren't officially available.  They just return no
> data.  For example, I can use "AdGroupStatus" in the keyword report
> but don't get anything back.  I would assume that this field is quite
> important as it's really needed for filtering because the status
> doesn't cascade down and the report ends up with a ton of keywords for
> Ad Groups that aren't actually active.
>
> Does this mean that new fields are on the way that just aren't
> documented yet?
>
> Thanks,
>
> Ewan
>
> On Aug 21, 6:56 am, AdWords API Advisor 
> wrote:
>
>
>
> > Hi David,
>
> > I will take your concerns to the appropriate teams within Google.  No
> > sunset date has been announced for the v13 ReportService yet, and when
> > it is announced customers will have at least 4-6 months to migrate
> > their applications.
>
> > Best,
> > - Eric
>
> > On Aug 20, 8:25 am, "okiebug1...@gmail.com" 
> > wrote:
>
> > > Hello Eric,
>
> > > I am shocked to hear this undocumented requirement for what should be
> > > a standard performance report, Keyword performance in our case.  The
> > > mandate to consume multiple methods just to translate report field's
> > > ids is a tough pill to swallow.  Please let the team know this is
> > > adding hours to the migration and causing additional web service
> > > method consumption, not to mention supporting data base files to
> > > handle these lookups.  All this additional work could be eliminated
> > > via the simple addition of the fields that define an AdWords campaign,
> > > rather than their ID's in the reports.
>
> > > The date issue is unfortunate, since I like to run an EOM procedure to
> > > clear my data warehouse and then recreate via a performance report for
> > > the month, in order to get latent conversions.  I can then show your
> > > customers the value or ROI in a lower cost per conversion, which
> > > translates to higher budgets and a greater spend.  This would now
> > > require, yet again, multiple report method consumption.
>
> > > I've migrated our in-house apps going back to Google's V5 and have
> > > always looked forward to the migration for added functionality and
> > > knowing the Google team was moving the bar forward with each
> > > migration.  Now this has my head spinning trying to understand how a
> > > simple report, readily available w/n the engines portal for all to run
> > > interactively, could be translated with in the API to multiple web
> > > services method's consumption and additional data base tables just to
> > > resolve the basic elements of an AdWords campaign: Campaign Name,
> > > which isn't even returned in the Keyword report, AdGroup, Keyword and
> > > date.  Please say it doesn't have to be this way.
>
> > > How can you make my argument known and get this rectified w/o
> > > interruption in services?  Has there been a drop dead date released
> > > for V13, or better yet has the request for functionality for V201003
> > > been closed.  Do I need to get our account rep involved at this time,
> > > in order to further support our push-back against this release?
>
> > > TGIF,
> > > David
>
> > > On Aug 19, 3:50 pm, AdWords API Advisor 
> > > wrote:
>
> > > > Hi David,
>
> > > > The v201003 ReportDefinitions are not backward compatible with v13
> > > > DefinedReportJobs, and the field names may be different.
>
> > > > The v201003 reports currently don't support any aggregation or
> > > > segmentation, which is to say you can't break out the results by day,
> > > > week, etc.  Instead the values will be calculated for the entire span
> > > > of the report, much like the Summary aggregationType in v13.  For this
> > > > reason there is no date field.  We plan to add segmentation in a later
> > > > version of the API, but at this time I don't have any estimates for
> > > > when it will be available.
>
> > > > The v201003 reports only contain the ID of the direct parent entity
> > > > and not the fields of the parent entities.  For instance, you can not
> > > > obtain campaign or ad group information in an ad report, only the ad
> > > > group ID.  To get this information you will need to run separate
> > > > campaign and ad group reports.  Since report generation is very fast,
> > > > and report definition

TargetError.CANNOT_TARGET_SEARCH_SYNDICATION_WITHOUT_GOOGLE_SEARCH

2010-09-02 Thread SW
Hi,

We are getting this error when trying to mutate
CampaignTargetService.

TargetError.CANNOT_TARGET_SEARCH_SYNDICATION_WITHOUT_GOOGLE_SEARCH
TARGETING_VALIDATION_FAILED

I get this error when we have selected options other than all
available sites under Networks and devices section in Campaign
settings(using api).

This is a random behavior and usually occurs when we try to set the
network target first time for the newly created campaign using API
200909.

Please me understand this issue or suggest work around.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: V2009 Campaign creation - biddingStrategy errors

2010-09-02 Thread Reed
Thanks Anash, but that is actually what I started with, before making
other changes, and was getting
Unmarshalling Error: Unable to create an instance of
com.google.ads.api.services.campaignmgmt.campaign.v200909.jaxbgen.BiddingStrategy

I've put the V20 ns prefixes back into my XML, and still get the above
error.  I've tried the following varients of that part of the XML, and
all get the above error.


ManualCPC




  
ManualCPC
 






I tried using SOAPUI to get the syntax right, but it wasn't specific
enough to this case.  I know it's gotta be something simple & stupid
that I'm doing, but I just don't see what it is!

thanks for the help,
-reed

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: How to retrive developers token?

2010-09-02 Thread AdWords API Advisor
Hi Sac,

Have you signed up for AdWords API yet? If not, you can signup for one
using the process described at
https://adwords.google.com/support/aw/adwordsapi/bin/answer.py?hl=en&answer=15104.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Sep 1, 3:24 pm, Sac  wrote:
> I already have google adword account which does not shows API Center
> tab in my Adwords account, So how can I retrive developer token for
> this account. Please 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: Keyword missing from Url report

2010-09-02 Thread AdWords API Advisor
Hi Susan,

Can you please post the sanitized SOAP requests for both the clients?
I can ask the AdWords team to investigate your issue.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Sep 1, 7:36 pm, Susan Ostroski  wrote:
> I'm using the Url report to get our clients data and I'm getting a
> different result with two clients.
>
> My job request
>
> my $report_job = SOAP::Data->name('job' =>
>   {'selectedReportType' => 'Url',
>    'aggregationTypes' => ['Daily'],
>    'startDay' => $startdate,
>    'endDay' => $enddate,
>    'selectedColumns' => [qw(Campaign AdGroup Keyword
> KeywordTypeDisplay DestinationURL
>                                 KeywordStatus FirstPageCpc QualityScore 
> MaximumCPC
>                                 MaxContentCPC PreferredCPM AdGroupStatus 
> CampaignStatus
>                                 Impressions Clicks CTR CPC Cost 
> AveragePosition
>                                 CostPerConverstion CostPerTransaction 
> TotalConversionValue)]
>
> One client I don't get the keyword and I get siteKwStatus. The other
> client I get Keyword but not sitKwStatus.
>
> Has anyone seen this?
>
> Thanks for any 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: ADwords API returning more keywords then exist in Adgroup

2010-09-02 Thread AdWords API Advisor
Hi Mick,

You can use userStatus field of AdGroupCriterionSelector to retrieve
only the active keywords. See
http://code.google.com/apis/adwords/v2009/docs/reference/AdGroupCriterionService.AdGroupCriterionSelector.html#userStatuses
for details.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Aug 31, 9:35 pm, Mick  wrote:
> Here is my problem, in my campaign "Wind Deflectors", adGroup "Audi
> A2" there are 36 keywords, none of which mention "Audi", there was
> some time ago but these have been deleted.
>
> Now, if I get the keywords for that adgroup using the API it retuns 44
> keywords, all listed below, have you any idea why it is returning the
> first 8 keywords (1-8) when they clearly no longer exist. Those extra
> 8 keywords that are been returned were deleted some time ago and are
> not visible in Adwords editor or on web interface.
>
> 1 audi wind deflectors
> 2 audi a2 deflectors
> 3 audi a2 wind deflectors
> 4 audi a2 wind breakers
> 5 audi wind-deflectors
> 6 wind-deflectors audi
> 7 audi wind-deflectors
> 8 wind guards audi
> 9 a2 wind guards
> 10 a2 wind rain deflectors
> 11 a2 window deflectors
> 12 a2 door wind deflectors
> 13 a2 air deflectors
> 14 a2 air-deflectors
> 15 a2 car wind deflectors
> 16 a2 wind deflectors visors
> 17 a2 rain guards
> 18 a2 wind-deflectors
> 19 a2 wind deflectors
> 20 a2 winddeflectors
> 21 a2 wind guards
> 22 a2 wind rain deflectors
> 23 a2 wind deflectors visors
> 24 a2 window deflectors
> 25 a2 air deflectors
> 26 a2 air-deflectors
> 27 a2 rain guards
> 28 a2 wind-deflectors
> 29 a2 wind deflectors
> 30 a2 door wind deflectors
> 31 a2 car wind deflectors
> 32 a2 winddeflectors
> 33 a2 wind guards
> 34 a2 wind rain deflectors
> 35 a2 window deflectors
> 36 a2 wind deflectors visors
> 37 a2 door wind deflectors
> 38 a2 wind deflectors
> 39 a2 wind-deflectors
> 40 a2 winddeflectors
> 41 a2 car wind deflectors
> 42 a2 air deflectors
> 43 a2 air-deflectors
> 44 a2 rain guards
>
> My vb.net code is below, any help would be greatly appreciated
>
>             Header.authToken = m_sAuthtoken
>             Header.userAgent = m_MyUserAgent
>             Header.clientEmail = m_sClientEmail
>             Header.developerToken = m_sDeveloperToken
>             Service.RequestHeader = Header
>
>             Dim AGCS As New
> adwords_adGroupCriterionService.AdGroupCriterionSelector
>             Dim AGCIDFILTER(0) As
> adwords_adGroupCriterionService.AdGroupCriterionIdFilter
>             AGCIDFILTER(0) = New
> adwords_adGroupCriterionService.AdGroupCriterionIdFilter
>             AGCIDFILTER(0).adGroupId = AdGroupID
>             AGCIDFILTER(0).adGroupIdSpecified = True
>
>             AGCS.idFilters = AGCIDFILTER
>             AGCS.criterionUse =
> adwords_adGroupCriterionService.CriterionUse.BIDDABLE
>             AGCS.criterionUseSpecified = True
>
>             Dim AdGroupCriterionPage As New
> adwords_adGroupCriterionService.AdGroupCriterionPage
>             AdGroupCriterionPage = Service.get(AGCS)
>
>             Dim adGroupCriterion As New
> adwords_adGroupCriterionService.AdGroupCriterion
>
>             For Each adGroupCriterion In AdGroupCriterionPage.entries
>                 Dim adgKeywords As
> adwords_adGroupCriterionService.Keyword
>                 adgKeywords = adGroupCriterion.criterion
>                 Select Case adGroupCriterion.criterion.CriterionType
>                     Case "Keyword"
>                         iKeywordCount = iKeywordCount + 1
>
> 'Debug.WriteLine(adGroupCriterion.criterion.id)
>                         If adgKeywords.matchType =
> adwords_adGroupCriterionService.KeywordMatchType.BROAD Or
> adgKeywords.matchType =
> adwords_adGroupCriterionService.KeywordMatchType.EXACT Or
> adgKeywords.matchType =
> adwords_adGroupCriterionService.KeywordMatchType.PHRASE Then
>                             sbIDs.Append(adGroupCriterion.criterion.id
> & ";")
>                         Else
>                             MsgBox("Negative Keyword")
>                         End If
>
>                     Case Else
>                         Debug.WriteLine(iKeywordCount & " " &
> adgKeywords.text)
>                 End Select
>                 WriteLog("c:\a2.txt", iKeywordCount & " " &
> adgKeywords.text)
>             Next

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


AUTO: Denis A Kamotsky/FIELD/FSG/FDS is out of the office. (returning 09/27/2010)

2010-09-02 Thread Denis A Kamotsky

I am out of the office until 09/27/2010.

I will be on vacation starting from Thursday, September 2nd, 2010. I will
be back in office on Monday, September 27th, 2010. Please contact Leonard
Stofsky if you have questions for me.


Note: This is an automated response to your message  "Digest for
adwords-api@googlegroups.com - 21 Messages in 16 Topics" sent on 9/2/2010
4:40:54 AM.

This is the only notification you will receive while this person is away.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: connect to using AdWordUser.php

2010-09-02 Thread AdWords API Advisor
Hi Rafael,

The AdWordsUser class has a constructor that accepts email, password,
etc. directly without reading it from auth.ini. See
http://code.google.com/p/google-api-adwords-php/source/browse/trunk/src/Google/Api/Ads/AdWords/Lib/AdWordsUser.php#95
for details.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Aug 31, 10:12 pm, Rafael Araujo dos Santos
 wrote:
> Hello, Please I need your help ...
>
> Is there a way to log on without using the adword auth.ini.
>
> but yes using  adWordUser.php ?
>
> introduce... e-mail address, password and ClientID developertoken,
> and  the continued  error.
>
> Can you 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: ReportDefinition

2010-09-02 Thread ewan
Hi Eric,

I've noticed that some of these fields are in fact available even
though they don't appear in the list returned from the Report
Definition Service.  For example, it is possible to add a "CampaignId"
and "CampaignName" field to the Keyword Performance Report and the
correct results are returned.

I've also noticed that some other fields don't actually return an
error when they aren't officially available.  They just return no
data.  For example, I can use "AdGroupStatus" in the keyword report
but don't get anything back.  I would assume that this field is quite
important as it's really needed for filtering because the status
doesn't cascade down and the report ends up with a ton of keywords for
Ad Groups that aren't actually active.

Does this mean that new fields are on the way that just aren't
documented yet?

Thanks,

Ewan

On Aug 21, 6:56 am, AdWords API Advisor 
wrote:
> Hi David,
>
> I will take your concerns to the appropriate teams within Google.  No
> sunset date has been announced for the v13 ReportService yet, and when
> it is announced customers will have at least 4-6 months to migrate
> their applications.
>
> Best,
> - Eric
>
> On Aug 20, 8:25 am, "okiebug1...@gmail.com" 
> wrote:
>
> > Hello Eric,
>
> > I am shocked to hear this undocumented requirement for what should be
> > a standard performance report, Keyword performance in our case.  The
> > mandate to consume multiple methods just to translate report field's
> > ids is a tough pill to swallow.  Please let the team know this is
> > adding hours to the migration and causing additional web service
> > method consumption, not to mention supporting data base files to
> > handle these lookups.  All this additional work could be eliminated
> > via the simple addition of the fields that define an AdWords campaign,
> > rather than their ID's in the reports.
>
> > The date issue is unfortunate, since I like to run an EOM procedure to
> > clear my data warehouse and then recreate via a performance report for
> > the month, in order to get latent conversions.  I can then show your
> > customers the value or ROI in a lower cost per conversion, which
> > translates to higher budgets and a greater spend.  This would now
> > require, yet again, multiple report method consumption.
>
> > I've migrated our in-house apps going back to Google's V5 and have
> > always looked forward to the migration for added functionality and
> > knowing the Google team was moving the bar forward with each
> > migration.  Now this has my head spinning trying to understand how a
> > simple report, readily available w/n the engines portal for all to run
> > interactively, could be translated with in the API to multiple web
> > services method's consumption and additional data base tables just to
> > resolve the basic elements of an AdWords campaign: Campaign Name,
> > which isn't even returned in the Keyword report, AdGroup, Keyword and
> > date.  Please say it doesn't have to be this way.
>
> > How can you make my argument known and get this rectified w/o
> > interruption in services?  Has there been a drop dead date released
> > for V13, or better yet has the request for functionality for V201003
> > been closed.  Do I need to get our account rep involved at this time,
> > in order to further support our push-back against this release?
>
> > TGIF,
> > David
>
> > On Aug 19, 3:50 pm, AdWords API Advisor 
> > wrote:
>
> > > Hi David,
>
> > > The v201003 ReportDefinitions are not backward compatible with v13
> > > DefinedReportJobs, and the field names may be different.
>
> > > The v201003 reports currently don't support any aggregation or
> > > segmentation, which is to say you can't break out the results by day,
> > > week, etc.  Instead the values will be calculated for the entire span
> > > of the report, much like the Summary aggregationType in v13.  For this
> > > reason there is no date field.  We plan to add segmentation in a later
> > > version of the API, but at this time I don't have any estimates for
> > > when it will be available.
>
> > > The v201003 reports only contain the ID of the direct parent entity
> > > and not the fields of the parent entities.  For instance, you can not
> > > obtain campaign or ad group information in an ad report, only the ad
> > > group ID.  To get this information you will need to run separate
> > > campaign and ad group reports.  Since report generation is very fast,
> > > and report definitions can be reused with sliding date ranges, it
> > > shouldn't be too much work to request this extra data.
>
> > > We are very interested in learning more about how users are finding
> > > the new v201003 reporting system, so please continue to let us know
> > > your feedback.
>
> > > Best,
> > > - Eric Koleda, AdWords API Team
>
> > > On Aug 19, 2:23 pm, "okiebug1...@gmail.com" 
> > > wrote:
>
> > > > I have found and fixed issues with selectors date formatting that
> > > > caused first error.
>
> > > > B E F O R E:
> > > > 
> > > >

Re: Reports fields no longer need /1000000

2010-09-02 Thread AdWords API Advisor
Hi David,

AdWords API should return all costs in micros (i.e. multiplied by
100), looks like this issue is specific to v102003 reports . I've
reported this issue to the AdWords team, I'll update you once I hear
from them.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Aug 31, 8:02 pm, "okiebug1...@gmail.com" 
wrote:
> Hello,
> I wanted to verify the treatment of money fields in all the report
> definitions.  After getting the definitions and supporting database
> tables set up for our clients and massaging the returned fields to
> include Campaign and AdGroup names, I noticed we no longer need to
> divide by 100 for the money fields.  I failed to find this
> documented, so I wanted to get the official statement, if I overlooked
> the documentation, please post link for my education.
>
> In the campaign management API, V200909, I was still performing this
> division when pulling down bid data.  Did the V201003 release of
> campaign management related methods also removed this mandate?
>
> Thanks in advance,
> David

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Why I always receive Emails from adwords API Group?

2010-09-02 Thread AdWords API Advisor
Hi Mike,

Seems you joined the group only on 30th, probably to post this mail.
Are you sure the mails are from this group?

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Aug 31, 9:29 am, Mike Lau  wrote:
> I haven't subscribe Emails from this group. Why I always receive spams
> from Adwords API group? My Email is flyingfish200383 at gmail.com. I
> have tried Unsubscribe from this mailing-list option but no worked.
> Please help me ASAP. Always thirty or fourty Emails per day.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: V2009 Campaign creation - biddingStrategy errors

2010-09-02 Thread AdWords API Advisor
Hi Reed,

Your request xml is missing the v20 prefix for biddingStrategy node
and its child nodes. The request would work if the prefix is added.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Sep 1, 10:33 pm, Reed  wrote:
> I should have said that I was trying to create a campaign, not an
> adgroup
> -reed

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Wrong fields returned by v201003 reporting service

2010-09-02 Thread AdWords API Advisor
Hi Mikael,

Thanks for confirming, I've conveyed this to the AdWords team.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Aug 31, 4:07 pm, MT  wrote:
> Hi Anash,
>
> No, I can't replicate it anymore - now all the correct fields are
> returned and nothing extra.
>
> -Mikael
>
> On 31 elo, 09:28, AdWords API Advisor 
> wrote:
>
>
>
> > Hi MT,
>
> > Is this issue replicable at your end? If yes, can you post the request
> > id for adding the reportdefinition and report definition id?
>
> > Anash
>
> > On Aug 16, 2:36 pm, AdWords API Advisor 
> > wrote:
>
> > > Hi MT,
>
> > > Thanks for pointing this out, I'll bring this to the notice of AdWords
> > > team.
>
> > > Cheers,
> > > Anash P. Oommen,
> > > AdWords API Advisor.
>
> > > On Aug 16, 1:14 pm, MT  wrote:
>
> > > > Itreturnedfour columns I didn't request
>
> > > > On 12 elo, 08:01, AdWords API Advisor 
> > > > wrote:
>
> > > > > Hi,
>
> > > > > Could you please clarify your question? Are you referring to the fact
> > > > > that the requested column names are different from the response column
> > > > > names? Or is it that the serverreturnedcolumns you didn't request?
>
> > > > > Cheers,
> > > > > Anash P. Oommen,
> > > > > AdWords API Advisor.
>
> > > > > On Aug 11, 2:05 pm, MT  wrote:
>
> > > > > > I'm trying to fetch a keyword performance report from thev201003
> > > > > >reportingservice with thesefields:
>
> > > > > > QualityScore
> > > > > > PreferredPosition
> > > > > > Cost
> > > > > > Conversions
> > > > > > Clicks
> > > > > > Impressions
> > > > > > ConversionsManyPerClick
>
> > > > > > But the response has these columns:
>
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
> > > > > > 
>
> > > > > > So "Match type" and "Bidding strategy" have been added before 
> > > > > > "Cost",
> > > > > > and Ad group ID has been added to the end (the keyword ID has also
> > > > > > been added, but I understand this is the expected functionality)

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

2010-09-02 Thread AdWords API Advisor
Hi Guys,

You need to contact your CSR at google or write to adwords-
supp...@google.com to address this issue.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Sep 1, 4:48 pm, "rekomend...@yandex.ru" 
wrote:
> I recive answer from Google by email.
> In Russia AdWords API  dont work.
>
> Polnoe govno.
>
> On Sep 1, 9:40 am, "rekomend...@yandex.ru" 
> wrote:
>
>
>
> > Hello.
>
> > I have exactly same situation, as mention here (but i use php
> > library):
>
> >http://groups.google.com/group/adwords-api/browse_thread/thread/bdf8e...
>
> > I go here:
> > MCC acount -> Biling preferences - > Choose form of paymen -> Please
> > review the available form of payment
>
> > But this page is empty.  There is no any choise to select.
>
> > What can I do?
> > Please, 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: UNEXPECTED_INTERNAL_API_ERROR

2010-09-02 Thread azcodemonkey
Yep. Thanks! I love consistency. ;)

On Aug 30, 10:22 pm, AdWords API Advisor
 wrote:
> Hi,
>
> The AdWords team updated me that you are providing "ACTIVE" as the
> filter value for AdGroupAd status. The valid values are ENABLED,
> PAUSED and DISABLED. Can you confirm if this is the case?
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
> On Aug 30, 3:13 pm, AdWords API Advisor 
> wrote:
>
>
>
> > Hi,
>
> > I'll check with the AdWords team today and update you once I hear from
> > them.
>
> > Cheers,
> > Anash P. Oommen,
> > AdWords API Advisor.
>
> > On Aug 28, 3:21 am, jhgd  wrote:
>
> > > I have a report definition for Ad Performance that I'm unable to
> > > download. I'm unsure of what predicate to use, but I've tried both
> > > AdGroupId and CampaignId with an IN operator, to no avail, but I'm not
> > > sure that's even the issue.
>
> > > I'm using the C# client lib and v201003.
>
> > >                         var selector = new Selector
> > >                         {
> > >                                 fields = new[] {
> > >                                         "Id",
> > >                                         "Status",
> > >                                         "AdGroupId",
> > >                                         "Url",
> > >                                         "Headline",
> > >                                         "Description1",
> > >                                         "Description2",
> > >                                         "DisplayUrl",
> > >                                         "Cost",
> > >                                         "AverageCpc",
> > >                                         "Clicks",
> > >                                         "Impressions",
> > >                                         "Ctr"
> > >                                 },
> > >                                 predicates = new[] { predicate, 
> > > activePredicate },
> > >                                 dateRange = new DateRange
> > >                                 {
> > >                                         max = 
> > > GetFormattedDate(DateTime.Today),
> > >                                         min = 
> > > GetFormattedDate(DateTime.Today.AddDays(-1))
> > >                                 }
> > >                         };
>
> > >                         var report = new ReportDefinition
> > >                         {
> > >                                 reportName = "Ad performance report #" + 
> > > GetTimeStamp(),
> > >                                 downloadFormat = DownloadFormat.XML,
> > >                                 downloadFormatSpecified = true,
> > >                                 reportType = 
> > > ReportDefinitionReportType.AD_PERFORMANCE_REPORT,
> > >                                 reportTypeSpecified = true,
> > >                                 dateRangeType = 
> > > ReportDefinitionDateRangeType.YESTERDAY,
> > >                                 dateRangeTypeSpecified = true,
> > >                                 selector = selector
> > >                         };
>
> > > I use the ReportUtilities' DownloadReportDefinition to get the latest
> > > report. I've also tried different formats, XML and GZIPPED_CSV. Nada.
>
> > > Here is the log:
>
> > > Request
> > > ---
>
> > > POST /api/adwords/cm/v201003/ReportDefinitionService
> > > User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client
> > > Protocol 4.0.30319.1)
> > > VsDebuggerCausalityData: uIDPo3Zq+4BWUjJNl9Om/2Dy2tkA5i1JbJ60/
> > > kyEiklSR6hAqmIoWWg00ktNjM+nwaDa+DcACQAA
> > > Content-Type: text/xml; charset=utf-8
> > > SOAPAction: ""
> > > Host: adwords.google.com
> > > Content-Length: 807
> > > Accept-Encoding: gzip
>
> > >  > > xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/";
> > > xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
> > > xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
> > >   
> > >     https://adwords.google.com/api/adwords/cm/
> > > v201003">
> > >       
> > >       godaddy.nearme.mount...@gmail.com
> > >       7hlg
> > >     
> > >   
> > >   
> > >     https://adwords.google.com/api/adwords/cm/v201003";>
> > >       
> > >     
> > >   
> > > 
>
> > > Response
> > > 
>
> > > SOAPAction: ""
> > > Content-Encoding:
> > > Transfer-Encoding: chunked
> > > X-Content-Type-Options: nosniff
> > > X-Frame-Options: SAMEORIGIN
> > > X-XSS-Protection: 1; mode=block
> > > Cache-Control: private, max-age=0
> > > Content-Type: text/xml; charset=UTF-8
> > > Date: Fri, 27 Aug 2010 21:26:55 GMT
> > > Expires: Fri, 27 Aug 2010 21:26:55 GMT
> > > Server: GSE
>
> > > http://schemas.xmlsoap.org/soap/envelope/";>
> > >   
> > >     https://adwords.google.com/api/adwords/cm/
> > > v201003">
> > >       de0a22ef00d5efb90f8b111849baca22
> > >       1
> > >       649
> > >       1
> > >     
> > >   
> > >   
> > >     https://adwords.google.com/api/adwords/cm/
> > > v201003">
> > >       
> > >         
> > >           1209103
> 

Re: Developer token not showing in account

2010-09-02 Thread biesbjerg
I've gotten an email from the Adwords crew yesterday, assuring me they
are working as fast as they can on fixing the problems we are seeing.


On Aug 30, 11:45 pm, Danny  wrote:
> Me 3... have you guys found any answers/workarounds?
>
> On Aug 27, 9:24 am, "cy...@espai-web.es"  wrote:
>
>
>
>
>
>
>
> > Hi,
>
> > I have exactly the same problem I received the confirmation email
> > today but nothing in my Adwords
> > API center section.
>
> > On 27 août, 10:06, biesbjerg  wrote:
>
> > > I just got an email today telling me my Adwords API token had been
> > > approved.
>
> > > I loggedinto myMCCaccount, checked the Adwords API Center - and it's
> > > alsoempty. Maybe a bug?
>
> > > On Aug 27, 9:53 am, Luke  wrote:
>
> > > > Hi
>
> > > > I couldn't post myaccountscreenshot but basically  the MyAccount-
> > > > AdWords API Center tab isempty, nothing is showing up in it.
>
> > > > On Aug 27, 7:34 am, AdWords API Advisor 
> > > > wrote:
>
> > > > > Hi Luke,
>
> > > > > You have to login to yourMCCaccountand navigate to MyAccount-
>
> > > > > >AdWords API Center to find your tokens.
>
> > > > > Cheers,
> > > > > Anash P. Oommen,
> > > > > AdWords API Advisor.
>
> > > > > On Aug 27, 1:12 am, Luke  wrote:
>
> > > > > > Hi
>
> > > > > > I received email from adwords saying that 'Developer Token has been
> > > > > > approved and activated for use with the AdWords API' but the 
> > > > > > 'Adwords
> > > > > > API center' section in myMCCaccountisempty. Could you please look
> > > > > > into this?
>
> > > > > > Thanks
> > > > > > Luke

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


ADwords API returning more keywords then exist in Adgroup

2010-09-02 Thread Mick
Here is my problem, in my campaign "Wind Deflectors", adGroup "Audi
A2" there are 36 keywords, none of which mention "Audi", there was
some time ago but these have been deleted.

Now, if I get the keywords for that adgroup using the API it retuns 44
keywords, all listed below, have you any idea why it is returning the
first 8 keywords (1-8) when they clearly no longer exist. Those extra
8 keywords that are been returned were deleted some time ago and are
not visible in Adwords editor or on web interface.

1 audi wind deflectors
2 audi a2 deflectors
3 audi a2 wind deflectors
4 audi a2 wind breakers
5 audi wind-deflectors
6 wind-deflectors audi
7 audi wind-deflectors
8 wind guards audi
9 a2 wind guards
10 a2 wind rain deflectors
11 a2 window deflectors
12 a2 door wind deflectors
13 a2 air deflectors
14 a2 air-deflectors
15 a2 car wind deflectors
16 a2 wind deflectors visors
17 a2 rain guards
18 a2 wind-deflectors
19 a2 wind deflectors
20 a2 winddeflectors
21 a2 wind guards
22 a2 wind rain deflectors
23 a2 wind deflectors visors
24 a2 window deflectors
25 a2 air deflectors
26 a2 air-deflectors
27 a2 rain guards
28 a2 wind-deflectors
29 a2 wind deflectors
30 a2 door wind deflectors
31 a2 car wind deflectors
32 a2 winddeflectors
33 a2 wind guards
34 a2 wind rain deflectors
35 a2 window deflectors
36 a2 wind deflectors visors
37 a2 door wind deflectors
38 a2 wind deflectors
39 a2 wind-deflectors
40 a2 winddeflectors
41 a2 car wind deflectors
42 a2 air deflectors
43 a2 air-deflectors
44 a2 rain guards

My vb.net code is below, any help would be greatly appreciated


Header.authToken = m_sAuthtoken
Header.userAgent = m_MyUserAgent
Header.clientEmail = m_sClientEmail
Header.developerToken = m_sDeveloperToken
Service.RequestHeader = Header

Dim AGCS As New
adwords_adGroupCriterionService.AdGroupCriterionSelector
Dim AGCIDFILTER(0) As
adwords_adGroupCriterionService.AdGroupCriterionIdFilter
AGCIDFILTER(0) = New
adwords_adGroupCriterionService.AdGroupCriterionIdFilter
AGCIDFILTER(0).adGroupId = AdGroupID
AGCIDFILTER(0).adGroupIdSpecified = True

AGCS.idFilters = AGCIDFILTER
AGCS.criterionUse =
adwords_adGroupCriterionService.CriterionUse.BIDDABLE
AGCS.criterionUseSpecified = True



Dim AdGroupCriterionPage As New
adwords_adGroupCriterionService.AdGroupCriterionPage
AdGroupCriterionPage = Service.get(AGCS)


Dim adGroupCriterion As New
adwords_adGroupCriterionService.AdGroupCriterion

For Each adGroupCriterion In AdGroupCriterionPage.entries
Dim adgKeywords As
adwords_adGroupCriterionService.Keyword
adgKeywords = adGroupCriterion.criterion
Select Case adGroupCriterion.criterion.CriterionType
Case "Keyword"
iKeywordCount = iKeywordCount + 1
 
'Debug.WriteLine(adGroupCriterion.criterion.id)
If adgKeywords.matchType =
adwords_adGroupCriterionService.KeywordMatchType.BROAD Or
adgKeywords.matchType =
adwords_adGroupCriterionService.KeywordMatchType.EXACT Or
adgKeywords.matchType =
adwords_adGroupCriterionService.KeywordMatchType.PHRASE Then
sbIDs.Append(adGroupCriterion.criterion.id
& ";")
Else
MsgBox("Negative Keyword")
End If

Case Else
Debug.WriteLine(iKeywordCount & " " &
adgKeywords.text)
End Select
WriteLog("c:\a2.txt", iKeywordCount & " " &
adgKeywords.text)
Next


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


Problems with API-developer MCC account

2010-09-02 Thread LC
Hi,

I have a regular Adwords account. In order to use API, I want to
create an MCC account. When I go to the MCC login page (http://
www.google.com/intl/en/adwords/myclientcenter/) and try the "sign up
now" button, it tells me that I already have an MCC account.

However, when I view my account, I don't see any MCC tab, nor do I see
the "API center" label under my "My Account" tab. Where did I go
wrong?

Liran

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


Hello, Mr. AdWords API Advisor!

2010-09-02 Thread biesbjerg
... Since I am not able to get my Adwords developer token in the
Adwords API Center at the moment, and am really anxious to get started
on my application, would it be possible for you to send me my
developer token to my email?

My email address is s...@mind-set.dk and my customer-id: 434-018-5680


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


connect to using AdWordUser.php

2010-09-02 Thread Rafael Araujo dos Santos
Hello, Please I need your help ...

Is there a way to log on without using the adword auth.ini.

but yes using  adWordUser.php ?

introduce... e-mail address, password and ClientID developertoken,
and  the continued  error.

Can you 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


How to retrive developers token?

2010-09-02 Thread Sac
I already have google adword account which does not shows API Center
tab in my Adwords account, So how can I retrive developer token for
this account. Please 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


PHP Client Library 500 Internal Server Error

2010-09-02 Thread Cullen Powell
Is anyone else getting a 500 internal server error when trying to use
the examples from the PHP client library in the sandbox environment?

We've double checked everything several times and tried it on 3
different servers. Any idea what could be causing this? The only time
we don't get a 500 internal server error is if we don't set the
auth.ini credentials to the correct values. In that case, it spits out
an array full of auth errors...

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