Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-05 Thread Vijayraj Chauhan
Hi Kevin,

Any update on this??? Does the Java client library support any other 
authentication other than ClientLogin?

TIA,
Vijayraj


On Monday, 7 November 2011 21:04:06 UTC+5:30, Kevin Winter wrote:

 Hi Vijayraj,
   No, the Java client library does not support AuthSub (it's an older 
 protocol like ClientLogin).  Unfortunately, ClientLogin will be the only 
 supported authentication until the rewritten java client library is ready.

 - Kevin Winter
 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: API Signup Page is broken!!

2012-04-05 Thread Ewan Heming
If I remember correctly you're supposed to sign up by navigating to the My 
Account  AdWords API Center screen from within an MCC account; if you 
don't have an MCC account, then you'll need to create one 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: adGroupCriteriaService() Problem retrieving Keywords / no unique elements in Response Array

2012-04-05 Thread scrat
Hi Eric,

thanks for the answer.
So every time i want to use field-names in a selection i have to use the 
String from the type-Column which i can find in the docs (e.g. 
http://code.google.com/intl/de-DE/apis/adwords/docs/reference/latest/AdGroupCriterionService.Keyword.html)
 
?

Best Regards

Andreas

Am Donnerstag, 15. März 2012 14:20:32 UTC+1 schrieb Eric Koleda:

 Hi,

 This is a known issue related to using incorrect field names.  Instead of 
 Text and MatchType you should be using KeywordText and 
 KeywordMatchType.  This will eliminate the duplicates.

 Best,
 - Eric Koleda, AdWords API Team

 On Tuesday, March 13, 2012 6:58:56 AM UTC-4, scrat wrote:

 When i use adGroupCriteriaService() i get a list of Keywords where each 
 Keywords has 3 copys.

 Here's the Code:
   $selector = new Selector();
   $selector-fields = 
 array('Id','AdGroupId','DestinationUrl','Status','MaxCpc','Text','MatchType');
   $selector-predicates[] = new Predicate('AdGroupId', 
 'EQUALS', (float)$paramsAG['adwords_adgroupid']);
   $selector-predicates[] = new Predicate('CriteriaType', 
 'IN', array('KEYWORD'));

   $page = $this-adGroupCriteriaService-get($selector);

 So normaly the $page-entries retrieves an Arra with unique entries 
 [1,2,3,...]

 But when i run the code the Array looks like this [1,1,1,2,2,2,3,3,3,...]

 I'm using API v201109.

 A Workaround to avoid this unwanted behavior is to make the array unique:
 $allKeywords = array();
 foreach($page-entries AS $k) {
 $allKeywords[$k-criterion-id] = $k;
 }

 Any suggestions?

 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: adGroupCriteriaService() Problem retrieving Keywords / no unique elements in Response Array

2012-04-05 Thread scrat
Update:
I just see that it's described in the description-column, what field-name 
should be used ;-)

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: AgeRange Gender undetermined Id

2012-04-05 Thread u...@taykey.com
any suggestions ?

On Tuesday, April 3, 2012 2:53:53 PM UTC+3, u...@taykey.com wrote:

 Hi,

 When trying to add negative campaign criterion to exclude AgeRange with id 
 503999 (Undetermined) OR
 trying to add negative campaign criterion to exclude Gender with id 20 
 (Undetermined)  results in: InternalApiError.UNEXPECTED_INTERNAL_API_ERROR

 in the adwords UI i saw that it is no possible to exclude Gender however 
 it is possible to exclude Age.

 so i wonder if its not possible to do that with the api or am i doing 
 something wrong ? 

 Thanks !!

 Udy



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


Only get active keywords

2012-04-05 Thread Neil Kirk
Hi,

I am setting paramaters for my keywords using the Perl API. When I get the 
keywords for a particular ad group, it retrieves all the keywords and so it 
trying to set parameters for a lot of keywords that it doesn't need to/is 
returning a lot of keywords that it doesn't need to.

Is there any way to filter the get so that it returns only keywords that 
are in use?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Only get active keywords

2012-04-05 Thread Neil Kirk
For example, here is a parameter that I tried to set:
entries xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:type=BiddableAdGroupCriterion
adGroupId715289155/adGroupId
criterionUseBIDDABLE/criterionUse
criterion xsi:type=Keyword
id16494201/id
typeKEYWORD/type
Criterion.TypeKeyword/Criterion.Type
textbulk sms/text
matchTypeBROAD/matchType
/criterion
AdGroupCriterion.TypeBiddableAdGroupCriterion/AdGroupCriterion.Type
stats
networkSEARCH/network
Stats.TypeStats/Stats.Type
/stats
/entries

but it returns an error:
?xml version=1.0?
soap:Envelope xmlns:soap=http://schemas.xmlsoap.org/soap/envelope/;
  soap:Header
ResponseHeader 
xmlns=https://adwords.google.com/api/adwords/cm/v201109;
  requestId0004bce84aefc2400a3464c71bbe/requestId
  serviceNameAdParamService/serviceName
  methodNamemutate/methodName
  operations1/operations
  responseTime111/responseTime
  units1/units
/ResponseHeader
  /soap:Header
  soap:Body
soap:Fault
  faultcodesoap:Server/faultcode
  faultstring[AdParamError.INVALID_ADGROUP_CRITERION_SPECIFIED @ 
operations[0].operand; trigger:'AdGroupId = 715289155, CriterionId = 
16494201']/faultstring
  detail
ApiExceptionFault 
xmlns=https://adwords.google.com/api/adwords/cm/v201109;
  message[AdParamError.INVALID_ADGROUP_CRITERION_SPECIFIED @ 
operations[0].operand; trigger:'AdGroupId = 715289155, CriterionId = 
16494201']/message
  
ApplicationException.TypeApiException/ApplicationException.Type
  errors xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance; 
xsi:type=AdParamError
fieldPathoperations[0].operand/fieldPath
triggerAdGroupId = 715289155, CriterionId = 16494201/trigger

errorStringAdParamError.INVALID_ADGROUP_CRITERION_SPECIFIED/errorString
ApiError.TypeAdParamError/ApiError.Type
reasonINVALID_ADGROUP_CRITERION_SPECIFIED/reason
  /errors
/ApiExceptionFault
  /detail
/soap:Fault

this happens to about 50% of my criterion, which is kinda wasteful in terms 
of API units.

Any help would be massively appreciated.

On Thursday, 5 April 2012 14:09:23 UTC+1, Neil Kirk wrote:

 Hi,

 I am setting paramaters for my keywords using the Perl API. When I get the 
 keywords for a particular ad group, it retrieves all the keywords and so it 
 trying to set parameters for a lot of keywords that it doesn't need to/is 
 returning a lot of keywords that it doesn't need to.

 Is there any way to filter the get so that it returns only keywords that 
 are in use?


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-05 Thread Kevin Winter
Hi Vijayraj,
  We just released the stable version of the new java 
library: http://code.google.com/p/google-api-ads-java/

This rewritten library works with maven and supports OAuth 1.0a as an 
authentication mechanism.  We're committing to full support of the new 
library at this time - it is no longer considered experimental and can be 
used in production code.

- Kevin Winter
AdWords API Team

On Thursday, April 5, 2012 3:38:50 AM UTC-4, Vijayraj Chauhan wrote:

 Hi Kevin,

 Any update on this??? Does the Java client library support any other 
 authentication other than ClientLogin?

 TIA,
 Vijayraj


 On Monday, 7 November 2011 21:04:06 UTC+5:30, Kevin Winter wrote:

 Hi Vijayraj,
   No, the Java client library does not support AuthSub (it's an older 
 protocol like ClientLogin).  Unfortunately, ClientLogin will be the only 
 supported authentication until the rewritten java client library is ready.

 - Kevin Winter
 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


TrafficEstimatorService: UNEXPECTED_INTERNAL_API_ERROR when using a metro code instead of country code

2012-04-05 Thread Dan Madoni
The TrafficEstimatorService get() method works fine if you use a country 
code for a Location criteria. However, if you use a metro code, the method 
returns an UNEXPECTED_INTERNAL_API_ERROR.
 
*This is easy to reproduce by using the example included with the .NET API 
GetTrafficEstimates example.* Just change these lines...
 
Location countryCriterion = new Location();
countryCriterion.id = 2840; // US
...to this...
 Location countryCriterion = new Location();
countryCriterion.id = 623; // Dallas/Ft. Worth
...and run it. You'll get the error.
 
This appears to be an AdWords bug. Please advise as to when this might be 
corrected OR what I might be doing incorrectly OR if there is a workaround.
 
I appreciate your immediate attention to this issue.
 
 

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: TargetingIdeaService not returning keyword

2012-04-05 Thread KBW
This worked, thank you Evgeniy.  




On Wednesday, April 13, 2011 3:43:53 PM UTC-7, Evgeniy Bogdanov wrote:

 Hi. 

 In v201101 you should use CRITERION instead of KEYWORD. 

 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: Exception occured on report validation / generation! The operation has timed out

2012-04-05 Thread Eric Koleda
Hi Marius,

You may want to check to see if there is a timeout defined somewhere that 
you can increase.  If the report is timing out server side then you will 
need to limit the number of results in your report, perhaps sharding the 
data by campaign.

Best,
- Eric Koleda, AdWords API Team

On Tuesday, April 3, 2012 2:50:44 AM UTC-4, Marius Toma wrote:

 Hi All,

 I have in my MCC 2 accounts with almost 2 millions adverts. 
 When i try to get a full report with both performing and not performing 
 adverts i get the following Exception. 
 I have to mention that for the other accounts the code is 
 working correctly.
 I am using Adwords API v201109 for c#.net.


 Exception occured on report validation / generation! The operation has 
 timed out
 System.Net.WebException: The operation has timed out
at System.Net.HttpWebRequest.GetRequestStream(TransportContext context)
at System.Net.HttpWebRequest.GetRequestStream()
at 
 Google.Api.Ads.AdWords.Util.Reports.ReportUtilities.DownloadReportToStream(String
  
 downloadUrl, AdWordsAppConfig config, Boolean returnMoneyInMicros, Stream 
 outputStream, String postBody) in 
 D:\Work\S_demo\trunk\AdWords\AdWords\Util\Reports\ReportUtilities.cs:line 
 267
at 
 Google.Api.Ads.AdWords.Util.Reports.ReportUtilities.GetClientReport[T](T 
 reportDefinitionOrId, Boolean returnMoneyInMicros) in 
 D:\Work\S_demo\trunk\AdWords\AdWords\Util\Reports\ReportUtilities.cs:line 
 103
at 
 Google.Api.Ads.AdWords.Util.Reports.ReportUtilities.GetClientReport[T](T 
 reportDefinitionOrId) in 
 D:\Work\S_demo\trunk\AdWords\AdWords\Util\Reports\ReportUtilities.cs:line 75
at SoluteReportingService.ReportManager.GetReportFromGoogle(String 
 pathToGzipFolder, String pathToUnpackedFolder) in 
 D:\Work\S_demo\trunk\SoluteReportingService\ReportManager.cs:line 211

 Can you advice me what to do in order to get this report.

 Thank you,
 Marius




-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Error : - AuthenticationError.CLIENT_CUSTOMER_ID_INVALID

2012-04-05 Thread Eric Koleda
Hi Pramod,

This error is thrown if the value passed in the header is not a valid 
number.  It is allowed to contain dashed however.

Best,
- Eric Koleda, AdWords API Team

On Tuesday, April 3, 2012 7:08:34 AM UTC-4, Pramod Patil wrote:

 Hi

  I have valid credentials still I am getting below error message.

  AuthenticationError.CLIENT_CUSTOMER_ID_INVALID

  I am setting ClientCustomerID field for new version of 
 Google.Api.Ads.AdWords.v201109

  Can you please me to resolve this error?

  

 Thanks  Regards,

 Pramod Patil


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: TrafficEstimatorService: UNEXPECTED_INTERNAL_API_ERROR when using a metro code instead of country code

2012-04-05 Thread Dan Madoni
This turns out to be my error: I was confusing the Metro identifier with 
the specific criterion ID. This is resolved, thank you.
 

On Thursday, April 5, 2012 10:25:48 AM UTC-5, Dan Madoni wrote:

 The TrafficEstimatorService get() method works fine if you use a country 
 code for a Location criteria. However, if you use a metro code, the method 
 returns an UNEXPECTED_INTERNAL_API_ERROR.
  
 *This is easy to reproduce by using the example included with the .NET 
 API GetTrafficEstimates example.* Just change these lines...
  
 Location countryCriterion = new Location();
 countryCriterion.id = 2840; // US
 ...to this...
  Location countryCriterion = new Location();
 countryCriterion.id = 623; // Dallas/Ft. Worth
 ...and run it. You'll get the error.
  
 This appears to be an AdWords bug. Please advise as to when this might be 
 corrected OR what I might be doing incorrectly OR if there is a workaround.
  
 I appreciate your immediate attention to this issue.
  
  


-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: CPC estimates - TrafficEstimatorService

2012-04-05 Thread Eric Koleda
Hi,

Divide a micro amount by one million to get the whole currency amount.  For 
an account configured with EUR as the currency this will be in euros.

Best,
- Eric Koleda, AdWords API Team

On Tuesday, April 3, 2012 9:06:02 AM UTC-4, Арман Мкртчян wrote:

 I have question about microAmount. How can I convet it to EUR?
 Thanks :)


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

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


Re: LocationCriterionService Selector returns bogus values

2012-04-05 Thread Eric Koleda
Hi Aaron,

The CSV I linked you to is new, and is up-to-date as of two weeks ago.  We 
plan to update this CSV much more frequently than the older ones.  We 
apologize for the mixed message thus far regarding looking up location 
criteria IDs.

Best,
- Eric

On Tuesday, April 3, 2012 1:56:47 PM UTC-4, Aaron Sherman wrote:

 Thanks again for taking the time to reply.

 With respect to using the CSV; this is where I had to go, but the problem 
 is that in separate queries about the data in the CSVs being out of date, 
 we've been told that if we want more current information we should use the 
 location service. You see the circular nature of the problem...

 One obvious solution is to take the CSV and verify it once every 
 some-reasonable-period against the API, but if the API is likely to return 
 best guess answers, then the verification isn't worth doing. What would 
 help a bit is if we had some guarantees with respect to the Last-Modified 
 header on the CSVs. At least then we could know that that date represented 
 the last time the data was pulled (rather than just a timestamp on a file 
 that might have been touched by an automated process).

 However, the core problem remains: the CSV isn't current enough and the 
 API isn't precise enough. One of those eventually needs to be fixed.


 On Tuesday, April 3, 2012 11:16:53 AM UTC-4, Eric Koleda wrote:

 Hi Aaron,

 No, unfortunately it's not possible to change the results returned by 
 that service.  If you want to perform a more strict lookup you may want to 
 download the CSV and query that dataset locally:

 https://developers.google.com/adwords/api/docs/appendix/geotargeting

 Best,
 - Eric

 On Monday, April 2, 2012 6:57:01 PM UTC-4, Aaron Sherman wrote:



 On Monday, April 2, 2012 4:27:32 PM UTC-4, Eric Koleda wrote:

 Hi Aaron,

 The short answer is that the LocationCriterionService returns suggested 
 locations given your input, and those suggestions may occasionally include 
 some seemingly off-topic results.  For the input Abbeville, Alabama I 
 wasn't able to get the behavior you're seeing, so it may have been a 
 temporary issue.



 Hmmm... I'll have to perform some more testing. Is there any way to turn 
 off the suggestions and just get entries whose LocationName could 
 rationally be said to be equal to the requested value?



-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Information on selector and how to fetch certain values

2012-04-05 Thread Eric Koleda
Hi,

You might find the following migration guide useful:

http://code.google.com/apis/adwords/docs/reportguide.html

Best,
- Eric Koleda, AdWords API Team

On Tuesday, April 3, 2012 2:37:21 PM UTC-4, p3llin0r3 wrote:

  
   I was recently orphaned by the new version of the software. We were 
 using some very old code, and new I receive a message telling us to update 
 our codebase. I'm about halfway there, but I could use some help. I need to 
 know how to fetch the following values, or what would be even better is a 
 list of fields and predicates I can use for the various selectors.

 *Note: *I've already found quite a few of these, but really I just want 
 to know what fields and predicates I have at my disposal.

 List of values:


1. campaign 
2. ad_group 
3. keyword 
4. keyword_match 
5. keyword_status 
6. keyword_min_cpc 
7. ad_headline 
8. ad_text_1 
9. ad_text_2 
10. destination_url_display 
11. impressions 
12. clicks 
13. conversions 
14. cost 
15. campaign_status 
16. ad_group_status 
17. ad_status 
18. ad_distribution 
19. ad_delivery 
20. daily_budget 
21. current_max_cpc 
22. current_max_cpm 
23. content_bid 
24. high_position 
25. low_position 
26. avg_position 
27. destination_url 
28. conversion_cost 
29. conversion_rate 
30. ctr 
31. cost_per_conversion 
32. camp_category 
33. AdGroupMaxCpc 
34. AdGroupMaxCpm 
35. AdGroupSiteMaxCpc 
36. AdGroupTargetCpa 
37. CampaignId 
38. KeywordDestUrlDisplay 
39. KeywordId 
40. KeywordIsNegative






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