KEYWORDS_PERFORMANCE_REPORT - full keyword list

2012-04-24 Thread Paul Foltache
Hi, 

I'm currently using adhoc KEYWORDS_PERFORMANCE_REPORT  to fetch keywords 
performace and it works great.
Now I want to get the full list of keywords. I tried to use the same report 
type without the columns that prevent 0 impressions results (ex: Date) and 
even if it seems to work I also get wrong (extra) keywords.

For example:
correct keywords returned: foot patch detox, foot pacht, patch anti 
tabac, patch detox
wrong keywords returned: pro evolution soccer 2010 patch, patch msn 
7.5, pro evolution soccer 2006 patch, fifa 09 patch

I also tried with CRITERIA reports with CriteriaType set to KEYWORDS and 
still get extra keywords.

And this is how intended to get the full keyword list:

report_definition = {
:selector = {
:fields = ['Id', 'AdGroupId', 'KeywordMatchType', 
'KeywordText', 'DestinationUrl', 'Status'],
:predicates = {
:field = 'AdGroupId',
:operator = 'IN',
:values = @adgroups_ids,
:order! = [:field, :operator, :values]
},
:date_range = {
:min = from,
:max = to
},
:order! = [:fields, :predicates, :date_range]
},
:report_name = 'Custom KEYWORDS_PERFORMANCE_REPORT',
:report_type = 'KEYWORDS_PERFORMANCE_REPORT',
:download_format = 'CSV',
:date_range_type = 'CUSTOM_DATE',
:order! = [:selector, :report_name, :report_type, 
:date_range_type, :download_format]
}


Any suggestion is appreciated, 
Paul 

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


cant create sandbox.

2012-04-24 Thread Arman
Hello to all.
I am trying to connect to sandbox but every time I receive this error :
Uncaught SoapFault exception: [soap:Server] 
InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
com.google.ads.api.services.common.error.InternalApiError.init(InternalApiErro
 

On this page 
:https://developers.google.com/adwords/api/docs/sandbox#request-headers 
said that i need to send get request for first time but i cant find basic 
example how to do that . Someone can post working  code that can help to do 
first time request ?
Thank you for your advice.

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


Uncomfortable look of Google Developers

2012-04-24 Thread Nizam Ansari
its very uncomfortable for me to see the tree view panel in the left side 
of google developer page. Whenever i try to read some child nodes of the 
tree view it is not visible complete just because of the space provided for 
it. and there is no option for adjusting the space. 

I want google to please set some adjuster there for comfortability.

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


Getting campaign budget spent for a single day

2012-04-24 Thread roberto
I have been trying to calculate the campaign budget spent at the end of the 
day, it is my understanding that Google updates campaign budget cost at 
04:00 or sometimes around that hour and I would like to know for each day 
how much budget was spent but I'm not sure I understand how data is 
represented.
Getting campaign data via the API can give me the initial budget via 
campaign-budget and get 'cost' via campaign-campaignStats-cost but I'm 
still failing to see how cost is calculated for a given time period, would 
cost be the entire campaign cost for the time it has been running or does 
it reset each day and when Google updates the cost represents the cost for 
the budget time period (DAILY or MONTHLY) ?

I cannot test this using real numbers since I'm currently working on the 
sandbox so I'm asking for your help.

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

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


Re: KEYWORDS_PERFORMANCE_REPORT - full keyword list

2012-04-24 Thread Paul Foltache
I just found out that the extra keywords are negative keywords. They are 
returned also with AdGroupCriterionService.
The thing is that if I choosethe IsNegative column it prevents 
0 impressions results from being returned.

Any idea how get the complete list of keywords (0 impressions inculded) 
without the negative keywords?

Paul

On Tuesday, April 24, 2012 9:31:22 AM UTC+3, Paul Foltache wrote:

 Hi, 

 I'm currently using adhoc KEYWORDS_PERFORMANCE_REPORT  to fetch keywords 
 performace and it works great.
 Now I want to get the full list of keywords. I tried to use the same 
 report type without the columns that prevent 0 impressions results (ex: 
 Date) and even if it seems to work I also get wrong (extra) keywords.

 For example:
 correct keywords returned: foot patch detox, foot pacht, patch anti 
 tabac, patch detox
 wrong keywords returned: pro evolution soccer 2010 patch, patch msn 
 7.5, pro evolution soccer 2006 patch, fifa 09 patch

 I also tried with CRITERIA reports with CriteriaType set to KEYWORDS and 
 still get extra keywords.

 And this is how intended to get the full keyword list:

 report_definition = {
 :selector = {
 :fields = ['Id', 'AdGroupId', 'KeywordMatchType', 
 'KeywordText', 'DestinationUrl', 'Status'],
 :predicates = {
 :field = 'AdGroupId',
 :operator = 'IN',
 :values = @adgroups_ids,
 :order! = [:field, :operator, :values]
 },
 :date_range = {
 :min = from,
 :max = to
 },
 :order! = [:fields, :predicates, :date_range]
 },
 :report_name = 'Custom KEYWORDS_PERFORMANCE_REPORT',
 :report_type = 'KEYWORDS_PERFORMANCE_REPORT',
 :download_format = 'CSV',
 :date_range_type = 'CUSTOM_DATE',
 :order! = [:selector, :report_name, :report_type, 
 :date_range_type, :download_format]
 }


 Any suggestion is appreciated, 
 Paul 



-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: KEYWORDS_PERFORMANCE_REPORT - full keyword list

2012-04-24 Thread Paul Foltache
Gonna use AdGroupCriterionService. I can use :criterion_use or 
:ad_group_criterion_type or xsi:type in order to filter the results.
If anyone knows how to do this using adhoc reports, suggestions are welcome.

Hope someone finds this helpful,
Paul 

On Tuesday, April 24, 2012 4:29:11 PM UTC+3, Paul Foltache wrote:

 I just found out that the extra keywords are negative keywords. They are 
 returned also with AdGroupCriterionService.
 The thing is that if I choosethe IsNegative column it prevents 
 0 impressions results from being returned.

 Any idea how get the complete list of keywords (0 impressions inculded) 
 without the negative keywords?

 Paul

 On Tuesday, April 24, 2012 9:31:22 AM UTC+3, Paul Foltache wrote:

 Hi, 

 I'm currently using adhoc KEYWORDS_PERFORMANCE_REPORT  to fetch keywords 
 performace and it works great.
 Now I want to get the full list of keywords. I tried to use the same 
 report type without the columns that prevent 0 impressions results (ex: 
 Date) and even if it seems to work I also get wrong (extra) keywords.

 For example:
 correct keywords returned: foot patch detox, foot pacht, patch anti 
 tabac, patch detox
 wrong keywords returned: pro evolution soccer 2010 patch, patch msn 
 7.5, pro evolution soccer 2006 patch, fifa 09 patch

 I also tried with CRITERIA reports with CriteriaType set to KEYWORDS and 
 still get extra keywords.

 And this is how intended to get the full keyword list:

 report_definition = {
 :selector = {
 :fields = ['Id', 'AdGroupId', 'KeywordMatchType', 
 'KeywordText', 'DestinationUrl', 'Status'],
 :predicates = {
 :field = 'AdGroupId',
 :operator = 'IN',
 :values = @adgroups_ids,
 :order! = [:field, :operator, :values]
 },
 :date_range = {
 :min = from,
 :max = to
 },
 :order! = [:fields, :predicates, :date_range]
 },
 :report_name = 'Custom KEYWORDS_PERFORMANCE_REPORT',
 :report_type = 'KEYWORDS_PERFORMANCE_REPORT',
 :download_format = 'CSV',
 :date_range_type = 'CUSTOM_DATE',
 :order! = [:selector, :report_name, :report_type, 
 :date_range_type, :download_format]
 }


 Any suggestion is appreciated, 
 Paul 



-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 hoc report, TSV output, no headers

2012-04-24 Thread axtens
I'm just starting to climb the learning curve of ad hoc reports. Is there a 
way with outputting TSV to turn off the field headers so that I just get 
the data?

Bruce.

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


Dev API Token - Still Pending

2012-04-24 Thread Dave Winget
Anything other than adwordsapi-tok...@google.com to get a status update of 
the API request? It's been over 1 month now for us and we're still 
pending without any contact from google about status or more questions. 
Should I just re apply? 

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

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


API support for AdWords Labels feature?

2012-04-24 Thread Reed
Any timeline for when the new Labels feature will be supported by the 
API, both for managing the setting/changing of labels as well as retrieving 
them?  Will there be support on the reporting side (ie, new report column)?
 
https://support.google.com/adwords/bin/answer.py?hl=enanswer=2475865
 
thanks
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: Dev API Token - Still Pending

2012-04-24 Thread RanksUp


On Tuesday, April 24, 2012 12:14:18 PM UTC-4, Dave Winget wrote:

 Anything other than adwordsapi-tok...@google.com to get a status update 
 of the API request? It's been over 1 month now for us and we're still 
 pending without any contact from google about status or more questions. 
 Should I just re apply? 


Lucky You! I've been waiting 8 months... 

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

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


Re: API Token - pending approval

2012-04-24 Thread RanksUp.com SEO
I've been waiting 8 months, good luck to you!

On Sunday, April 15, 2012 10:43:12 AM UTC-4, Snow Globe wrote:

 Hello,

 Please take in consideration the posts from people that are still waiting 
 for their developer token to be approved.

 This can be truely critical issue for our businesses.

 I can only speak for our application but:
 We have done our very best to make 100% sure that we are compliant with 
 the adwords API terms  conditions (we have actually suppressed some of our 
 products and have sent a new detailed application early march).
 We need our token to be approved to continue working (we cannot hire one 
 person as long as our token is not approved)
 We have been waiting for over 8 weeks in total
 We have not received any feedback from Google to let us know what should 
 be done to make sure that our application is approved.
 We are adwords qualified partners, Google analytics qualified and the 
 local Google team has recently asked us lead some adwords seminars (please 
 get in touch if you need to verify this information).
 We simply need to use the API to provide better service to our clients as 
 we are trying to develop our agency. Our direct competitors have access to 
 the API.

 We are doing our best to have a constructive attitude and work as 
 partners with Google but this situation makes us feel like we should 
 using lawyers, registered letters, etc. to get the attention of the Google 
 API team. Isn't this absurd?

 Thank you again for your time and please try to get back to us.
 Snow globe 
 number 966890832







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


TargetingIdeaService with NoClientLibrary

2012-04-24 Thread Briggs Thompson
Hello All,

I have been trying for the past day to get the TargetingIdeaService to work 
without using the client library. I have tried both with hardcoding the xml 
payload and with building up an object in the examples for the 
campaignService. If anyone has an example that would be very helpful. I 
also checked 
out 
http://stackoverflow.com/questions/7471152/using-php-and-soap-to-access-the-targetingideaservice-in-the-google-adwords-api
 
but looks like he didn't make progress past the described code.

Also, it seems like 
https://adwords.google.com/api/adwords/cm/v201109/CampaignService is 
hittable but 
https://adwords.google.com/api/adwords/cm/v201109/TargetingIdeaService is 
not. Any help is appreciated!

Thanks,
Briggs Thompson

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


Quick SOAP+XML Tutorial results in XML_STREAM_EXC

2012-04-24 Thread Bill Jenkins
Request: Can anyone suggest a solution to the XML_STREAM_EXC error I am 
recieving?


I'm learning the adwords API and tried implementing the Quick SOAP+XML 
tutorial at  https://developers.google.com/adwords/api/docs/#soap

After editing out the spaces used to indent the lines of XML code the 
result passes validation at  http://validator.w3.org/check

Here's the curl command I enter:  curl --header Content-Type: 
application/soap+xml --data @hello_world.xml 
https://adwords-sandbox.google.com/api/adwords/cm/v201109/CampaignService

Here's the result:  soap:Envelope 
xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;soap:Bodysoap:Faultfaultcodesoap:Client/faultcodefaultstringXML_STREAM_EXC/faultstring/soap:Fault/soap:Body/soap:Envelope

Here's the contents of hello_world.xml (with private info replaced by xxx)

?xmlversion =1.0 encoding=UTF-8?
soap:Envelope
xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
xmlns=https://adwords.google.com/api/adwords/cm/v201109;
soap:Header
RequestHeader
authTokenxxx/authToken
userAgentcurl-tutorial/userAgent
developerTokenx...@gmail.com/developerToken
clientCustomerIdxxx-xxx-/clientCustomerId
/RequestHeader
/soap:Header
soap:Body
mutate
operations
operatorADD/operator
operand
nameHelloWorld!withcURL/name
budget
periodDAILY/period
amount
microAmount10/microAmount
/amount
deliveryMethodSTANDARD/deliveryMethod
/budget
biddingStrategy
xmlns:cm=https://adwords.google.com/api/adwords/cm/v201109;
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
xsi:type=cm:ManualCPC/
/operand
/operations
/mutate
/soap:Body
/soap:Envelope

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