Soap Error

2011-09-15 Thread mani
We have been using the TargetingIdeaService to generate keywords for
URL for a while now. Intermittently we start getting soap errors -
Unable to parse SOAP buffer for incoming messages. no element found:
line 1, column 0

We have also noticed that the memory goes up and there is a possible
memory leak in the adspygoogle python library.
Any ideas?


The call we are using is:
'searchParameters': [{
'xsi_type': 'RelatedToUrlSearchParameter',
'urls': [url],
'includeSubUrls': 'false'
},
{
'xsi_type': 'CompetitionSearchParameter',
'levels': ['MEDIUM', 'HIGH']
}
],
'ideaType': 'KEYWORD',
'requestType': 'IDEAS',
'requestedAttributeTypes': ['COMPETITION',
'KEYWORD',
'GLOBAL_MONTHLY_SEARCHES',
'KEYWORD_CATEGORY',
'AD_SHARE',
'SEARCH_SHARE'],
'paging': {
'startIndex': '0',
'numberResults': '100'
}
}

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 get exact keyword search results

2011-09-15 Thread Tomski
Hello Guys,

I hope you can help me with the following problem.
What I need is a function as provided in google´s keyword tool.
When I search for a keyword (for example: domain) and check only the 
exact box on the left,
I get the exact search results for domain and around 200 more keyword 
ideas with their respective exact hits displayed.

I have the following script working but it only displays a few keyword 
ideas. Not as much as displayed in the keyword tool.
The displayed keyword ideas are different too.

Here is my script:

$user = new AdWordsUser();
// Log SOAP XML request and response.
$user-LogDefaults();

// Get the TargetingIdeaService.
$targetingIdeaService = $user-GetTargetingIdeaService('v201008');

$countryTarget = new CountryTarget($country,false);
$countryTargetSearchParameter = new CountryTargetSearchParameter();
$countryTargetSearchParameter-countryTargets = array($countryTarget);

// Take look here !
$monthSearchVolume = new GlobalMonthlySearchesSearchParameter(new 
LongComparisonOperation('1000'));

// Create seed keyword.
$keyword = new Keyword();
$keyword-text = $key;
$keyword-matchType = 'EXACT';

// Create selector.
$selector = new TargetingIdeaSelector();
$selector-requestType = 'IDEAS';
$selector-ideaType = 'KEYWORD';
$selector-requestedAttributeTypes =
array('KEYWORD', 'AVERAGE_TARGETED_MONTHLY_SEARCHES');

// Set selector paging (required for targeting idea service).
$paging = new Paging();
$paging-startIndex = 0;
$paging-numberResults = 30;
$selector-paging = $paging;

// Create related to keyword search parameter.
$relatedToKeywordSearchParameter = new 
RelatedToKeywordSearchParameter();
$relatedToKeywordSearchParameter-keywords = array($keyword);

// Create keyword match type search parameter to ensure unique results.
$keywordMatchTypeSearchParameter = new 
KeywordMatchTypeSearchParameter();
$keywordMatchTypeSearchParameter-keywordMatchTypes = array('EXACT');

// And here !
$selector-searchParameters = 
array($relatedToKeywordSearchParameter,$keywordMatchTypeSearchParameter, 
$countryTargetSearchParameter, $monthSearchVolume);

$results=$targetingIdeaService-get($selector);
print_r($results);


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


Phone validation

2011-09-15 Thread sheinmus
How can I validate the phone number before creating LocationExtension?
I wonder if there is any services for phone number validation?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 get exact keyword search results

2011-09-15 Thread Tomski
Here is another example:

my scripts shows only the following 19 keywords with their exact hits when I 
search for tassen
lederwaren
tassen online shop
handtassen
pip tassen
leren tassen
draagtassen
schoudertassen
tassen online
oilily tassen
handtas
vintage tassen
groothandel tassen
laptoptassen
leren tas
goedkope tassen
damestassen
converse tassen
handtassen online
tassen groothandel

When I search for tassen in google´s keyword tool with the search options:
exact
country: germany
language: germany

I got 800 keyword ideas.

This is what my script should 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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread James M
Hey Eric,

Thank you for the response and I appreciate you taking the time to write out 
exactly what we should do.

5-6 weeks though? You do realise that for some people you are shutting down 
their business for 5-6 weeks, costing them money every day, and punishing 
the guys who have actually taken the time to work with the API and NOT 
scrape results.

It is unacceptable that you have no phone number for us to contact, a 
rediculas waiting time for API re approval and no notice as to why our 
account was getting shut down. A series of emails warning people would have 
been a much better angel rathen than a blanket ban. The API team NEEDS to 
give those who they shut down temporary access.

James

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread keesjan
Hi James,
Our application is in the same position and iam completly agree with your 
complaints about shutting down before asking for more information.

Don't be evel to your best ambassadors, the developers.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread rayden
What are you guys using API for? As i see we are all handling Adwords
for
few 10,100,1000 clients. Maybe this has some connection with cross-
client
reports that is making problems since launch of v201101 library.

At this point it would be really cool to have explanation what we
did?

Best regards,

On Sep 15, 11:38 am, keesjan adwo...@interneteffect.com wrote:
 Hi James,
 Our application is in the same position and iam completly agree with your
 complaints about shutting down before asking for more information.

 Don't be evel to your best ambassadors, the developers.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Developer token pending for more than 3 weeks

2011-09-15 Thread Danial Klimkin
Hello missyourl,


Please expect 5 to 6 weeks for the application review.


Danial, AdWords API Team.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Where do I put my adwords.properties file?

2011-09-15 Thread Danial Klimkin
Hello Neil,


By default, it is the home directory ('~/adwords.properties' or 
'/home/username/adwords.properties').


-Danial, AdWords API Team.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread keesjan
@raden it seems not to be a bug like Erik stated here 
https://groups.google.com/forum/#!msg/adwords-api/BXyV40LfEEI/Rt2Jgrp3NWsJ
Or do you refer to some sort of change in the 
RMFhttp://code.google.com/apis/adwords/docs/requirements.html

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread Justin
The thing that's bothersome about this situation, Eric, is that there
 are keyword tools like Market Samurai (a tool that is initially given
 away for free) and other desktop tools that SCRAPE the Google External
 Keyword Tool, which is a clear violation of Google's Terms of
 Service.  These desktop tool owners don't have the nerve to even apply
 for an Adwords API token because their business model of having an end
 user paying for the tool one time would never work.

I'll second that.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread Reed
I'm curious as to whether those who have been affected by this process
received any of the email audit notifications that the Google AdWords
API auditing people have been sending out overthe past 4-6 weeks..??
Those messages referred to the pages that Eric mentioned to provide
information on the nature of your AdWords API usage.  I'm not trying
to defend how they've handled this - I've been having a tough time
filling those forms because they seem to make some assumptions about
the types of api applications that exist.  I think there is also a
problem in that they sent the emails (every couple of weeks, actually)
to the email address of the person that handles the API bills.  It
seems to me that they should have  a setup similar to that of WHOIS
for DNS registrations, so that there can be both administrative and
technical contacts associated with an API key.  You all might want to
check and see what email they have that is associated with your API
key, since that's what they seem to be using for their communicades.
fyi
-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 get exact keyword search results

2011-09-15 Thread Tomski
Hmm, it seems I solved the problem,

the Parameter  GlobalMonthlySearchesSearchParameter(new 
LongComparisonOperation('1000')); simply cut the response :-)

But how can I sort the api response by the exact hits (greates value first) 
? 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread keesjan
@ Reed
I did indeed got no api evaluation email. Just changed hoster and the 
adwords mcc center email is different from the adwords api email. They maybe 
only send email to the adwords api email? I did not get any email.
I just found this post 
http://adwordsapi.blogspot.com/2011/06/changes-to-required-minimum.html 
about RFM minimums. But I got no email about this

Very very frustrating process. We all have to think about the dependence 
from the ones good guy Google.

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


CustomerSyncService: no changes returned when UI lists them

2011-09-15 Thread bgraves
Many of my Destination URLs were changed at 5:13pm (GMT+1) on Sept.
7.  I tried using the CustomerSyncService to find these changes and
update them in our dateabase.  Unfortunately, the service isn't
returning any changes at all.  Any idea why this is happening?  Would
it have anything to do with the timezone I'm using (GMT-7) in my
request (which should still return this data when converted to GMT
+1)?  Here's my SOAP trace:

-BEGIN API CALL-

Request
---


?xml version=1.0 encoding=utf-8?soap:Envelope
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;!--POST /api/adwords/ch/
v201008/CustomerSyncService
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; MS Web Services Client
Protocol 4.0.30319.225)
VsDebuggerCausalityData:
uIDPo96nrbwt9m9GrxPDrFbKZk4AowtZcUdmTE6DyYHx8mbSHjaYgGObFqREvfk1J3SdGYQACQAA
Content-Type: text/xml; charset=utf-8
SOAPAction: 
Host: adwords.google.com
Content-Length: 2010
Connection: Keep-Alive
TimeStamp: Thu, 15 Sep 2011 09:15:48 GMT
--soap:HeaderRequestHeader xmlns=https://adwords.google.com/api/
adwords/ch/v201008authToken xmlns=https://adwords.google.com/api/
adwords/cm/v201008**/authTokendeveloperToken xmlns=https://
adwords.google.com/api/adwords/cm/v201008**/
developerTokenuserAgent xmlns=https://adwords.google.com/api/
adwords/cm/v201008AwApi-DotNet-0.0.0|webmetro/userAgent/
RequestHeader/soap:Headersoap:Bodyget xmlns=https://
adwords.google.com/api/adwords/ch/
v201008selectordateTimeRangemin xmlns=https://
adwords.google.com/api/adwords/cm/v20100820110906 18 -07:00/
minmax xmlns=https://adwords.google.com/api/adwords/cm/
v20100820110907 19 -07:00/max/
dateTimeRangecampaignIds76840718/
campaignIdscampaignIds76980638/campaignIdscampaignIds76980758/
campaignIdscampaignIds76981718/campaignIdscampaignIds77002838/
campaignIdscampaignIds77002958/campaignIdscampaignIds77003078/
campaignIdscampaignIds77541998/campaignIdscampaignIds77542118/
campaignIdscampaignIds77542238/campaignIdscampaignIds77542358/
campaignIdscampaignIds77542478/campaignIdscampaignIds77542598/
campaignIdscampaignIds77542718/campaignIdscampaignIds77542838/
campaignIdscampaignIds77542958/campaignIdscampaignIds77543078/
campaignIdscampaignIds79005638/campaignIdscampaignIds79005758/
campaignIdscampaignIds81438278/campaignIdscampaignIds81477878/
campaignIdscampaignIds81482198/campaignIdscampaignIds81482678/
campaignIdscampaignIds81483038/campaignIds/selector/get/
soap:Body/soap:Envelope

Response



soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/
envelope/!--X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Transfer-Encoding: chunked
Cache-Control: private, max-age=0
Content-Type: text/xml; charset=UTF-8
Date: Thu, 15 Sep 2011 16:15:48 GMT
Expires: Thu, 15 Sep 2011 16:15:48 GMT
Server: GSE
TimeStamp: Thu, 15 Sep 2011 09:15:48 GMT
--soap:Headerns2:ResponseHeader xmlns:ns2=https://
adwords.google.com/api/adwords/ch/v201008 xmlns=https://
adwords.google.com/api/adwords/cm/
v201008requestId0004acfd3081bd780a42516a00b7903c/
requestIdoperations0/operationsresponseTime1343/
responseTimeunits0/units/ns2:ResponseHeader/
soap:Headersoap:Bodyns2:getResponse xmlns=https://
adwords.google.com/api/adwords/cm/v201008 xmlns:ns2=https://
adwords.google.com/api/adwords/ch/
v201008ns2:rvalns2:changedCampaignsns2:campaignId76840718/
ns2:campaignIdns2:campaignChangeStatusFIELDS_UNCHANGED/
ns2:campaignChangeStatusns2:campaignTargetingChangedfalse/
ns2:campaignTargetingChanged/
ns2:changedCampaignsns2:changedCampaignsns2:campaignId76980638/
ns2:campaignIdns2:campaignChangeStatusFIELDS_UNCHANGED/
ns2:campaignChangeStatusns2:campaignTargetingChangedfalse/
ns2:campaignTargetingChanged/
ns2:changedCampaignsns2:changedCampaignsns2:campaignId76980758/
ns2:campaignIdns2:campaignChangeStatusFIELDS_UNCHANGED/
ns2:campaignChangeStatusns2:campaignTargetingChangedfalse/
ns2:campaignTargetingChanged/
ns2:changedCampaignsns2:changedCampaignsns2:campaignId76981718/
ns2:campaignIdns2:campaignChangeStatusFIELDS_UNCHANGED/
ns2:campaignChangeStatusns2:campaignTargetingChangedfalse/
ns2:campaignTargetingChanged/
ns2:changedCampaignsns2:changedCampaignsns2:campaignId77002838/
ns2:campaignIdns2:campaignChangeStatusFIELDS_UNCHANGED/
ns2:campaignChangeStatusns2:campaignTargetingChangedfalse/
ns2:campaignTargetingChanged/
ns2:changedCampaignsns2:changedCampaignsns2:campaignId77002958/
ns2:campaignIdns2:campaignChangeStatusFIELDS_UNCHANGED/
ns2:campaignChangeStatusns2:campaignTargetingChangedfalse/
ns2:campaignTargetingChanged/
ns2:changedCampaignsns2:changedCampaignsns2:campaignId77003078/
ns2:campaignIdns2:campaignChangeStatusFIELDS_UNCHANGED/
ns2:campaignChangeStatusns2:campaignTargetingChangedfalse/
ns2:campaignTargetingChanged/
ns2:changedCampaignsns2:changedCampaignsns2:campaignId77541998/
ns2:campaignIdns2:campaignChangeStatusFIELDS_UNCHANGED/

Low usage of the AdWords API? We spend $200+ a month on tokens!

2011-09-15 Thread John
This came as a huge shock to me and my team today.  I don't understand
what they consider low usage but we are easily doing $200 or more a
month in token usage through the API.

This honestly couldn't of come at worse time as we have a huge product
we are rolling out just 4 days from now and uses the API very
extensively.  I've gotten no response from the API center or from
customer support.  I can understand if there was no usage at all, but
this is a pretty fair amount of tokens.

We have systems in place that monitor our clients campaigns, making
sure that they are performing so we are pulling detailed reports every
four hours, including two massive reports on a daily basis.

Anyone else having any luck?  I feel sick to my stomach over this!!!

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread rayden
I got that message too, just half an hour ago. I use it on daily base
too.
Never thought you can get punished for using too low?

I have no idea what can we do more, i think non of us can wait for
5-6 weeks. Any ideas?

Best regards,

On Sep 15, 8:37 pm, Austin Houser m...@austinhouser.com wrote:
 Same... This is ridicules, I received an email about 2 minutes ago
 stating IMPORTANT MESSAGE: Your API Developer Token Has Been
 Disabled.

 According to the email my account way rejected due to low usage, yet
 both my API key and my MMC account are used on a daily basis.  Any
 help will be appreciated here, sooner the better!

 My best,
 Austin

 On Sep 12, 1:48 pm, Up Spin Software, LLC



 adwo...@upspinsoftware.com wrote:
  I have had an approved developer token for months now and today for some
  reason my developer token has been rejected.

  I have re-applied for the developer token, but can some provide some insight
  as to why all of the sudden my account has been rejected.

  Thanks,

  Kyle

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Low usage of the AdWords API? We spend $200+ a month on tokens!

2011-09-15 Thread rayden
Same here, i guess we can just wait what google employes will respond.

I still think its crazy that we got disabled, after 5 years of daily
usage.

Best regards

On Sep 15, 8:30 pm, John bossk...@gmail.com wrote:
 This came as a huge shock to me and my team today.  I don't understand
 what they consider low usage but we are easily doing $200 or more a
 month in token usage through the API.

 This honestly couldn't of come at worse time as we have a huge product
 we are rolling out just 4 days from now and uses the API very
 extensively.  I've gotten no response from the API center or from
 customer support.  I can understand if there was no usage at all, but
 this is a pretty fair amount of tokens.

 We have systems in place that monitor our clients campaigns, making
 sure that they are performing so we are pulling detailed reports every
 four hours, including two massive reports on a daily basis.

 Anyone else having any luck?  I feel sick to my stomach over this!!!

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread Fraser Cain
Same message. We're at 8 million API units used, and paid for. How much 
usage do we need? How much do we have to pay? 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread Matthew Redford
I've had the same message too.

We have all been worried thinking that our apps / businesses have failed 
terms and conditions, hasn't met the minimum required functionality etc and 
the real reason is... we aren't using the API as much as required.

As a business... how is cutting off our API usage for 5 to 6 weeks going to 
help us increase API usage? After this period of time we will need to start 
from a weakened position - building up trust and customers again. Rather 
than assisting small start ups - Google once again is favoring the big 
brands because it knows where the money is. Wasn't Google once a start up 
business?

Honestly - couldn't this have been dealt with alot better by informing API 
users of their token usage, what is required etc whilst our tokens were 
active? This would have kept us up to date with the minimum requirements and 
acted as an incentive to improve our usage of the API. It's just crazy. I'm 
usually a calm person but this has really frustrated 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


Does it Cost to Integrate into a software for Adwords API for Keyword Research

2011-09-15 Thread Mo Miah
Hey all!

I am having an issue finding information about the Adwords API, I am in 
development of software tool, and require the adwords API for keyword 
research, however, I will not be using the API to actually bid on adwords. I 
just want to use it for keyword research, to get information about monthly 
searches, competition, etc. I was wondering if I need to pay to use the API, 
seeing as my software will only do basic research to find keywords and their 
respective search amounts. I am not looking to use it to actually make 
adwords campaigns, just to use for research and viewing. Can anyone help me 
with this, and just help me to clarify what route I need to take to have 
Google Keywords Tool integrated for normal research, and not for any paid 
research or adwords bids etc.

Kind Regards

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


Rounding of conversion value in Keyword and Search Query Performance reports

2011-09-15 Thread GregT
Hi.

We're trying to transition some reports we run from the V13 API to the 
v201101 API.  Something we're seeing is that the conversion value that we 
are getting from the v201101 Keyword Performance and Search Query 
Performance reports appears to being rounded to the nearest tenth of a 
dollar (or whatever the currency is for the particular client account). 
 E.g. in the V13 AdGroup Report, what we're downloading as 10.13 for the 
conversion value on a particular day and ad group is coming down as 10.1 in 
the v201101 Keyword Performance and Search Query Performance reports.

I don't know if this is related to the issue that the TotalConvValue field 
in the newer API's reports is a Long rather than Money (as mentioned at 
http://groups.google.com/group/adwords-api/browse_thread/thread/5fd4e56ae00bd14http://groups.google.com/group/adwords-api/browse_thread/thread/5fd4e56ae00bd14/5e1dd43f668b97c8?lnk=gstq=returnMoneyInMicros+#5e1dd43f668b97c8),
 
but the rounding obviously throws things off.  What's interesting is that 
when I look at the client accounts in the adwords UI, the conversion values 
for individual keywords or ad groups shown are also rounded in the same way 
(to the nearest tenth of a currency unit), but the total conversion value 
for the time period is shown as the sum of the non-rounded amounts (as given 
by the V13 AdGroup report) and then the total is rounded to the nearest 
tenth of a currency unit.

I didn't see anything in the documentation mentioning a way to download the 
conversion value in these reports without rounding, and I haven't seen 
anything on these forums mentioning this.  Is there a way to turn off this 
rounding in our reports?  If not, this seems like a bug in the API to me?

Thanks,
Greg

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread Mykola Rudenko
Can you please post this message here?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread keesjan
Same message here:
no clue about:

   1. what is30 days volume is measured, 
   2. not what IS to low:
   3. so every time we have holiday here in Europe, yes we do have free time 
   I have to worry about low tresholds?
   4. the APIis then NOT for startups; the always start with low volumes. 
   Larry Page love startup and want Google to think like a startup again? ohno; 
   they act like a dino!
   

The letter:

As stated in the AdWords API Terms and Conditions (Section II.4), we 
periodically review AdWords API activity. We noticed that there has been low 
usage of the AdWords API developer token associated with your My Client 
Center (MCC) manager ID @@ in the last 30 days. For the purpose of 
ensuring quality, improving Google products and services and compliance with 
AdWords API Terms and Conditions, we have disabled this token.

If you wish to re-apply for the token, please visit the AdWords API Center 
in your account. Remember to answer the following in detail if you re-apply 
for the token:

a)  Describe the uses of your API application or tool with specific 
examples. For instance, account management or bid optimization.

b)  Who is or will be using your API application or tool? For example, 
colleagues in your company or advertisers or agencies to whom you are 
selling the tool.

c)   Please attach screenshots of your API application or tool. If the 
application or tool is yet to be developed, please provide relevant design 
documentation.

d)  Please provide a list of clients that will be using your API 
application or tool in an automated way.

Please know that that we will take between 5 and 6 weeks to process all 
developer token re-applications.

Regards,

The AdWords API Team

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread Fraser Cain
And how can we know low usage was really the reason? I have a feeling that 
that it's more about a lopsided usage of the API, relying on specific 
queries in the API, and not enough in other places.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread rayden
Fraser,

Totally agree, since we all got this message now, 3 days after block.
That`s why I asked
before 10 posta, what do you guys use API for? We mainly use it for
structure report and
statistics. Since google has trouble making cross-client report for
v201101, I think this is
strongly related.

I just hope this mess resolves soon.

Best,

On 15 sep., 23:44, Fraser  Cain fraserc...@gmail.com wrote:
 And how can we know low usage was really the reason? I have a feeling that
 that it's more about a lopsided usage of the API, relying on specific
 queries in the API, and not enough in other places.

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


v201101 cross client report

2011-09-15 Thread rayden
Hello,

Anything new on cross client report? Its been almost half a year from
banning v201101 cross client report, is it any ETA on this subject?

Best regards,

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread Fraser Cain
We were using it for monthly search volume for organic search optimization. 
I'm guessing it's because we didn't do enough paid search use of the API 
that we got cut off.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Approved AdWords API developer token is now Rejeted - PLEASE HELP!

2011-09-15 Thread slimeyboy
Eric.  Please will see if it's possible, as per my last post, to grant
temporary access to those who are having their token re-pplications
reviewed. Waiting 5-6 weeks to reapplications to be processed is going
to kill off a lot of people's businesses.


On Sep 15, 4:30 am, Eric Koleda eric.kol...@google.com wrote:
 Hi All,

 Thank you for your feedback regarding this issue.  I will pass it on to the
 appropriate people.

 Best,
 - 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


Re: Low usage of the AdWords API? We spend $200+ a month on tokens!

2011-09-15 Thread slimeyboy
We spend around the same and received the same message after the event
(Google revoking our token).  The situation is almost laughable were
it not having such a devastating effect on people's businesses (ours
included).  The more I think about this the more I think that there's
been a glitch somewhere at Google's end.  Time will tell.
On Sep 16, 1:48 am, rayden razor@gmail.com wrote:
 Same here, i guess we can just wait what google employes will respond.

 I still think its crazy that we got disabled, after 5 years of daily
 usage.

 Best regards

 On Sep 15, 8:30 pm, John bossk...@gmail.com wrote:







  This came as a huge shock to me and my team today.  I don't understand
  what they consider low usage but we are easily doing $200 or more a
  month in token usage through the API.

  This honestly couldn't of come at worse time as we have a huge product
  we are rolling out just 4 days from now and uses the API very
  extensively.  I've gotten no response from the API center or from
  customer support.  I can understand if there was no usage at all, but
  this is a pretty fair amount of tokens.

  We have systems in place that monitor our clients campaigns, making
  sure that they are performing so we are pulling detailed reports every
  four hours, including two massive reports on a daily basis.

  Anyone else having any luck?  I feel sick to my stomach over this!!!

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 Error - Report contents are invalid. - !!!1|||0|||rangee...@selector.reportdefinitionid.id while download data from the google api

2011-09-15 Thread timp
I have seen this as well.

But in our testing over the last month, only once of maybe 200 reports or 
something.

And it occurred directly after creating the report.


What were the circumstances where you saw the error?

-tim

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 Error - Report contents are invalid. - !!!1|||0|||rangeerro...@selector.reportdefinitionid.id while download data from the google api

2011-09-15 Thread timp
Also, just in case different parts of google talk to each other.

The javascript with this new embedded forum is buggy.

I can't press the button to get back to the forum where I was.

Which is annoying.

And your theme looks like a 5 year old drew a bunch of squares.
Or it looks like you let your programmers try to be artists.

.

But this 2011 API is rocking!!!
Congratulations!  

So much nicer.   And docs are sooo much better.

-tim

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


Trying to access Google Adwords Sandbox API

2011-09-15 Thread adnonymous
I'm trying to access Google Adwords Sandbox API and I cannot, for the
life of me, figure out what's going on.

Here's my code:

var wsUrl = https://adwords-sandbox.google.com/api/
adwords/cm/v201008/CampaignService;

var soapRequest =
'soapenv:Envelope \
xmlns:soapenv=http://schemax.xmlsoap.org/soap/
envelope/ \
xmlns=https://adwords.google.com/api/adwords/cm/
v200906 \
soapenv:Header \
serviceadwords/service \
email***@gmail.com/email \
password***/password \
developerToken***@gmail.com++USD/
developerToken \
useragentMyApplication/useragent \
/soapenv:Header \
soapenv:Body \
getClientAccounts/ \
/soapenv:Body \
/soapenv:Envelope';

$.ajax({
type: GET,
url: wsUrl,
contentType: document.body,
crossDomain: true,
dataType: jsonp,
data: soapRequest,
success: processSuccess,
error: processError
});

});

function processSuccess(data, status, req) {
if (status == success)
console.log(success);
}

function processError(data, status, req) {
console.log(status =  + status +  data=  + data );
}


I keep getting 500 Internal Server errors. What am I doing wrong?! On
the Google Adwords Sandbox website, they list simple instructions:

 To create a sandbox account, send a get request to the sandbox version
 of CampaignService, using the WSDL location and sandbox headers as
 described below. This initial call to the sandbox creates an MCC
 sandbox account, along with five client accounts, for the email
 address you specified. Your sandbox account and its client accounts
 start out empty.
http://code.google.com/apis/adwords/docs/sandbox.html

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