Unable to add Campaign for New Customer

2012-07-24 Thread Prakash
HI,

I am Unable to add the campaign for new added customer

*EX- Add Member*

/*
It is used Register member.
*/
function CreateAccountExample() {
  global $user;
  // Get the service, which loads the required classes.
  $createAccountService =
  $user->GetService('CreateAccountService', 'v201109');
  $clientName=trim($_POST['firstName'].' '.$_POST['middleName'].' 
'.$_POST['lastName']);

  // Create account.
  $account = new Account();
  $account->currencyCode = 'USD';
  $account->dateTimeZone = 'Asia/Calcutta';

  // Create operation.
  $operation = new CreateAccountOperation();
  $operation->operand = $account;
  $operation->descriptiveName = $clientName;
  $operation->operator = 'ADD';

  $operations = array($operation);

  // Make the mutate request.
  $result = $createAccountService->mutate($operations);

  // Display result.
  $account = $result[0];
  return $account->customerId;
  }
 $customerId=CreateAccountExample();

/*
It is used Add Campaign.
*/
function addEditCampaign( AdWordsUser $user, $customerId, $campaignName) {
$campaignService = $user->GetService("CampaignService", 'v201109');
$campaign = new Campaign();
$campaign->name = $campaignName.'#'.time();
$campaign->status = 'ACTIVE';
$caption = 'added';
$campaign->biddingStrategy = new ManualCPC();
$budget = new Budget();
$budget->period = 'DAILY';
$budget->amount = new Money((float) 1000);
$budget->deliveryMethod = 'STANDARD';
$campaign->budget = $budget;
 
$networkSetting = new NetworkSetting();
$networkSetting->targetGoogleSearch = TRUE;
$campaign->networkSetting = $networkSetting;
 
$operation = new CampaignOperation();
$operation->operand = $campaign;
$operation->operator = 'ADD';
 
$operations = array($operation);
$result = $campaignService->mutate($operations);
  
}

$user->SetClientId($customerId);
addEditCampaign( $user, $customerId, 'TEST');

-RESULT ARE-
QuotaCheckError.INCOMPLETE_SIGNUP_LATEST_ADWORDS_API_TNC_NOT_AGREED
-

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


Maven repository inconsistency

2012-07-24 Thread GJ
Hello all,

We are trying to pull this api library through Maven. We followed the 
instructions provided, and were successful through Eclipse.

Our project however is done in a framework called play! It's a java web 
framework, that actually uses Ivy to pull any dependencies. This is where 
we are having problems. When we try to include this api library with 
version # 1.6.0 we get the following UNRESOLVED DEPENDENCIES:

[warn]  :: 
  
[warn] ::  UNRESOLVED DEPENDENCIES ::
[warn] ::
[warn] :: com.google.api-client#google-api-client;RELEASE: not found
[warn] :: com.google.oauth-client#google-oauth-client;RELEASE: not found


These two dependencies are actually not RELEASE version, BUT 1.6.0-beta in 
the public repository that we checked. So it's not 
http://repo1.maven.org/maven2/com/google/api-client/google-api-client/1.6.0/google-api-client-1.6.0.pom

rather,
http://repo1.maven.org/maven2/com/google/api-client/google-api-client/1.6.0-beta/google-api-client-1.6.0-beta.pom

So Ivy cannot find these two dependencies because for some reason they do 
not follow the same versioning as the other dependencies.

Is it possible to work around this problem, so that we can get all the 
dependencies?

Thanks in advance,

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: InternalApiError.UNEXPECTED_INTERNAL_API_ERROR in sandbox

2012-07-24 Thread Tommy Choi
Hi, I am using AdWordsService.v201109.ServicedAccountService in sandbox 
environment and face the same error. I guess the fix has not been done yet?

On Saturday, May 5, 2012 12:10:04 AM UTC+10, Kevin Winter wrote:
>
> Hi,
>   Unfortunately, we have no update at this time.
>
> - Kevin Winter
> AdWords API Team
>
> On Friday, May 4, 2012 6:50:53 AM UTC-4, Marc Sanders wrote:
>>
>> Has this issues been resolved?
>>
>> On Sunday, March 4, 2012 11:41:53 AM UTC+1, Bruce Wu wrote:
>>>
>>> Hi,
>>>
>>> I'm facing the same problem (using PHP with and without client library). 
>>>
>>> To replicate, try the CreateAccount.php example with PHP 5.3.2
>>>
>>> For me, it ended up with: "An error has occurred: 
>>> InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
>>> com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro".
>>>
>>> Best regards,
>>> Bruce Wu
>>>
>>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: SizeLimitError.RESPONSE_SIZE_LIMIT_EXCEEDED.

2012-07-24 Thread Johnny AdRoll
Did this ever reach any kind of conclusion?  I suddenly (as of yesterday) 
have the same issue when sending ADD mutates to the AdGroupService.  I 
began systematically reducing the number of adgroups I sent in a batch 
until I was only sending one at a time, and I still get this error.  If 
this error accurately reflects the underlying problem, then the response 
for a single adgroup must be massive.  Obviously, I can't see the response, 
so I can only go off the responses I get in the sandbox, but those seem to 
be reasonably sized (for XML).

I'm beginning the suspect the accuracy of this message.  Perhaps this has 
something to do with a limit on adgroups in the account?  Any help would 
really be appreciated.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Questions about BudgetOrderService

2012-07-24 Thread Kevin Winter
Hi Jim,
  I agree - that is very confusing.  When you run getBillingAccounts - do 
you get a BillingAccount entry for every Order ID?  I'm beginning to 
suspect that BillingAccount is the new Order (I apologize that I'm not as 
familiar with the BudgetOrderService as I should be).

- Kevin Winter
AdWords API Team

On Tuesday, July 24, 2012 5:43:38 PM UTC-4, Jim McCabe wrote:
>
> Hi Kevin -
>
> Actually I have good reason to believe that we should pass the same "order 
> ID" that we traditionally passed in v13.
>
> a) Yesterday I did some testing with new production accounts and was 
> successful when I passed our same old order ID in that field.
>
> b) I also filed a request with the AdWords API support email, as well as 
> our company contact @ Google, and both suggested that we send the order ID.
>
> Since it worked I am fine moving forward with that.  It was just confusing 
> since the name makes it seem like it needs an *account* ID.
>
> Jim
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: PHP API - TargetingIdeaService - RelatedToUrlSearchParameter - [TargetingIdeaError.INVALID_SEARCH_PARAMETERS @ selector.selector.searchParameters[2].includeSubUrls]

2012-07-24 Thread Kevin Winter
Hi Josh,
  The 
getBulkKeywordIdeas
 only 
returns keywords - since includeSubUrls doesn't work for keywords, you 
can't use it in bulk either.

- Kevin Winter
AdWords API Team

On Tuesday, July 24, 2012 2:26:17 PM UTC-4, Josh wrote:
>
> Hi Alexander,
>
> so can I assume or not the bulk method will allow for using includeSubUrls 
> ?
>
> Josh
>
> Le mardi 24 juillet 2012 10:41:54 UTC+2, Alexander Nitschke a écrit :
>>
>> Hi Josh,
>>
>> please look further down to the documentation for "includeSubUrls". This 
>> one is ignored for "KEYWORD" queries, generally the KEYWORD idea query 
>> supports only one Url. But I think Kevin's link was misleading as he linked 
>> to the v201206 doc and your code is using v201109. Still, the documentation 
>> for this specific field hasn't changed. 
>>
>> Alexander
>>
>> Am Montag, 23. Juli 2012 19:57:30 UTC+2 schrieb Josh:
>>>
>>> Hi,
>>>
>>> thanks for the answer.
>>>
>>> Sorry I must be blind but the I don't see such mention in provided link, 
>>> the documentation states :
>>>
>>> - "This element is supported by following 
>>> RequestTypes:
>>>  
>>> IDEAS, STATS. " 
>>> - "This search parameter can be used in bulk keyword requests through 
>>> the 
>>> TargetingIdeaService.getBulkKeywordIdeas(TargetingIdeaSelector)method"
>>>
>>> I'm not using the Bulk Method but this parameter was also used to be 
>>> supported by versions prior to v201109
>>>
>>>
>>>
>>> Le lundi 23 juillet 2012 16:59:02 UTC+2, Kevin Winter a écrit :

 Hi,
   The documentation indicates that for KEYWORD requests (ideaType), 
 this field isn't supported: 
 https://developers.google.com/adwords/api/docs/reference/latest/TargetingIdeaService.RelatedToUrlSearchParameter#includeSubUrls

 - Kevin Winter
 AdWords API Team

 On Friday, June 22, 2012 8:02:25 AM UTC-4, Josh wrote:
>
> Hi,
>
> it looks as if the includeSubUrls parameter is not correctly supported 
> as I keep getting this error :
>
> [TargetingIdeaError.INVALID_SEARCH_PARAMETERS @ 
> selector.selector.searchParameters[2].includeSubUrls]
>
> My code is really straightforward :
>
>   $targetingIdeaService = $user->GetTargetingIdeaService('v201109');
>   // Create selector.
>   $selector = new TargetingIdeaSelector();
>   $selector->requestType = 'IDEAS';
>   $selector->ideaType = 'KEYWORD';
>   $selector->requestedAttributeTypes =
>   array('CRITERION', 'AVERAGE_TARGETED_MONTHLY_SEARCHES', 
> 'COMPETITION', 'NGRAM_GROUP');
>
>   // Set selector paging (required for targeting idea service).
>   $paging = new Paging();
>   $paging->startIndex = 0;
>
> $paging->numberResults = 50;
>
> $search = new RelatedToUrlSearchParameter();
> $search->urls = 'www.foo.com';
> $search->includeSubUrls = true;
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: SOAP Module for AdWords Maven 1.4.0 Java Client Library

2012-07-24 Thread Kevin Winter
Hi Ewan,
  Yes, please let us know if this is reproducible.  If it is, please file 
an issue on the issue tracker.  Bonus points if you have the solution =) 
 Thanks!

- Kevin Winter
AdWords API Team

On Monday, July 23, 2012 9:00:12 PM UTC-4, Ewan Heming wrote:
>
> Hi Kevin,
>
> I also assumed that what worked on Linux would work on Windows, but wasn't 
> aware of any problem until I delivered the code to a customer and they 
> tried to run it! I think that my customer has actually worked out what was 
> wrong, so I'll see if I can find out
>
> Regards,
>
> Ewan
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Guice provision errors while trying to access BudgetOrderServiceInterface

2012-07-24 Thread Jim McCabe
I work with ak4chen and we ultimately took a different approach.

We made a small JAR out of the v13 classes from 8.4.1.  Then we upgraded to 
8.7.0, but also use this new tiny v13 JAR.  Finally we made a little shim 
to implement the AdWordsService and AdWordsVersion objects needed to prop 
up v13.  Works great!

Jim

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Can we access Adwords API only with developer key?

2012-07-24 Thread Kevin Winter
Hi Vipin,
  To expand on Ewan's post, all requests need two things: a Developer Token 
and a form of authentication.  Authentication can either be via ClientLogin 
(which requires a username and password) or via OAuth (1.0a or 2).

- Kevin Winter
AdWords API Team

On Saturday, July 21, 2012 8:19:56 PM UTC-4, Ewan Heming wrote:
>
> Hi Vipin,
>
> You question is a bit confusing: it suggests you want to access third 
> party AdWords accounts without authority, which is probably not what you 
> mean! If you're asking about the TrafficEstimatorService 
> or TargetingIdeaService, which don't necessarily need access to a specific 
> account, then you can just use your MCC username and password without 
> specifying a customer id. However, the results for some fields, such as the 
> average cpc, are tailored to a specific account so you'll find that 
> entering a customer id might yield different results.
>
> Regards,
>
> Ewan 
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: AdUrl and GCLID

2012-07-24 Thread Kevin Winter
Hi,
  You might want to post this in the general AdWords product forums, as 
this isn't specific to the AdWords API.

- Kevin Winter
AdWords API Team

On Saturday, July 21, 2012 3:35:28 PM UTC-4, clickoptics wrote:
>
> Hey all,
>
> So I've noticed requests coming in from Google that don't have a GCLID 
> present, but look in all manner to be a an ad click. The AdUrl parameter is 
> set, and the rest of the URL bits are set, but just no GCLID.
>
> Has anyone seen this? Are these registered as valid ad clicks?
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: getting all campaigns

2012-07-24 Thread Kevin Winter
Hi Shai,
  My Client Center (MCC) accounts can't (normally) have campaigns (once, a 
long time ago they could under some circumstances).  In order to get the 
campaigns for individual accounts, you'll need to call 
session.setClientCustomerId(account.account.getCustomerId()).  This tells 
the session that you want to target a new account for the next request.

If you want to obtain ALL account data, it will probably be more efficient 
to run a "structure" report.  When you run a report with no fields that 
prevent zero impressions, you get a row for each entity of that report 
type.  This tends to be more efficient than making all the associated SOAP 
calls.

- Kevin Winter
AdWords API Team

On Saturday, July 21, 2012 5:24:30 AM UTC-4, Shaihulud wrote:
>
> Hi 
>
> i just want to know if this is the right way to get the campaigns.. My 
> client center shows that there are campaigns which confuses me and lead me 
> to believe that i am doing something wrong here..
>
> i would really appreciate a little insight
>
> thx
> shai
>
> Am Donnerstag, 19. Juli 2012 12:13:58 UTC+2 schrieb Shaihulud:
>>
>>  Hi
>>
>> i am trying to get the campaigns assoziated with my accounts. I dived 
>> throuh the example classes and build this little bit of code
>>
>>  [code]
>>
>> ...
>>
>> ServicedAccountServiceInterface servicedAccountService = null;
>> // Get the ServicedAccountService.
>> try {
>> servicedAccountService = new AdWordsServices().get(session, 
>> ServicedAccountServiceInterface.class);
>> } catch (ReflectionsException e) {
>> }
>>
>> // Create selector.
>> ServicedAccountSelector selector = new ServicedAccountSelector();
>> // To get the links paging must be disabled.
>> selector.setEnablePaging(false);
>>
>> // Get serviced account graph.
>> ServicedAccountGraph graph = servicedAccountService.get(selector);
>>
>> // Display serviced account graph.
>> if (graph != null) {
>> // Create account tree nodes for each account.
>> for (Account account : graph.getAccounts()) {
>> CampaignServiceInterface campaignServiceInterface = null;
>> try {
>> campaignServiceInterface = new 
>> AdWordsServices().get(session, CampaignServiceInterface.class);
>> } catch (ReflectionsException e) {
>> }
>>
>> int offset = 0;
>>
>> // Create selector.
>> Selector selector2 = new Selector();
>> selector2.setFields(new String[] {"Id", "Name"});
>> selector2.setOrdering(new OrderBy[] {new OrderBy("Name", 
>> SortOrder.ASCENDING)});
>> selector2.setPaging(new Paging(offset, PAGE_SIZE));
>>
>> CampaignPage page = null;
>> System.out.println("**CAMPAIGNS**");
>> do {
>> // Get all campaigns.
>> page = campaignServiceInterface.get(selector2);
>>
>> // Display campaigns.
>> if (page.getEntries() != null) {
>> for (Campaign campaign : page.getEntries()) {
>>
>> [/code]
>>
>>  Now i have 2 question because it seems im on the wrongt track here. I 
>> would like to get the campaigns specific to an account and not all of them. 
>> How can i do that. 
>>
>> Also, campaignpage returns null for the entries (Campaign[]), which is 
>> weird because there should be several campaigns for eacht of the clients 
>> (assuming that each account represents a client !? ).
>>
>> I would apreciate any help. Isnt there any example code that shows the 
>> basic operation of getting all infos to a client? campaigns, assoziated, 
>> adgroups, associated adtext, assoziated keywords etc? 
>> thx for the help
>> shai
>>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Questions about BudgetOrderService

2012-07-24 Thread Jim McCabe
Hi Kevin -

Actually I have good reason to believe that we should pass the same "order 
ID" that we traditionally passed in v13.

a) Yesterday I did some testing with new production accounts and was 
successful when I passed our same old order ID in that field.

b) I also filed a request with the AdWords API support email, as well as 
our company contact @ Google, and both suggested that we send the order ID.

Since it worked I am fine moving forward with that.  It was just confusing 
since the name makes it seem like it needs an *account* ID.

Jim

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Guice provision errors while trying to access BudgetOrderServiceInterface

2012-07-24 Thread Kevin Winter
Hi,
  Can you provide a snippet for how your code is accessing the new java 
library?  If you included all the jars from that tarball, this shouldn't 
happen (double-check to make sure you aren't missing/have removed any).

Any other steps you took to set this up would also be helpful.

- Kevin Winter
AdWords API Team

On Friday, July 20, 2012 6:33:03 PM UTC-4, ak4chen wrote:
>
> Hi all,
>
> So in the move to strip my code of references to v13 due to its imminent 
> drop of support, I was intending to try out a new way to access budget 
> information. However, in a unit test case where I tried to make that happen 
> (using the jars from 
> http://code.google.com/p/google-api-ads-java/downloads/list, 
> adwords-axis-examples-1.6.0.tar.gz), I ended up getting a Guice provision 
> error instead, and am fairly uncertain as to how do approach fixing it.
>
> Any ideas would be greatly appreciated.
>
> Failure trace:
>
> com.google.inject.ProvisionException: Guice provision errors:
>
> 1) null returned by binding at 
> com.google.api.ads.common.lib.factory.FactoryModule$AdsServiceClientFactoryInterface.create()
>  but parameter 2 of 
> com.google.api.ads.adwords.lib.client.AdWordsServiceClient.() is not 
> @Nullable
>   while locating com.google.api.ads.adwords.lib.client.AdWordsSession 
> annotated with @com.google.inject.assistedinject.Assisted(value=adsSession)
> for parameter 2 at 
> com.google.api.ads.adwords.lib.client.AdWordsServiceClient.(AdWordsServiceClient.java:56)
>   while locating 
> com.google.api.ads.adwords.lib.client.AdWordsServiceClient annotated with 
> interface com.google.inject.assistedinject.Assisted
>
> 1 error
> at com.google.inject.internal.InjectorImpl$4.get(InjectorImpl.java:987)
> at 
> com.google.inject.assistedinject.FactoryProvider2.invoke(FactoryProvider2.java:632)
> at $Proxy186.create(Unknown Source)
> at 
> com.google.api.ads.common.lib.factory.helper.BaseAdsServiceClientFactoryHelper.createServiceClient(BaseAdsServiceClientFactoryHelper.java:87)
> at 
> com.google.api.ads.common.lib.factory.helper.BaseAdsServiceClientFactoryHelper.createAdsServiceClient(BaseAdsServiceClientFactoryHelper.java:72)
> at 
> com.google.api.ads.common.lib.factory.AdsServiceClientFactory.getServiceClient(AdsServiceClientFactory.java:73)
> at 
> com.google.api.ads.common.lib.factory.BaseAdsServiceClientFactory.getServiceClientAsInterface(BaseAdsServiceClientFactory.java:79)
> at 
> com.google.api.ads.adwords.lib.factory.AdWordsServices.get(AdWordsServices.java:84)
> at 
> com.cobalt.dap.channel.service.google.v201109_1.AbstractGoogleApiClient.getService(AbstractGoogleApiClient.java:197)
> at 
> com.cobalt.dap.channel.service.google.v201109_1.AbstractGoogleApiClient.getOrReuseService(AbstractGoogleApiClient.java:179)
> at 
> com.cobalt.dap.channel.service.google.v201109_1.GoogleApiClient.getBudgetOrderService(GoogleApiClient.java:27)
> at 
> com.cobalt.dap.channel.service.google.v201109_1.GoogleApiClientTest.getBudget(GoogleApiClientTest.java:54)
> at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at 
> sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
> at 
> sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
> at java.lang.reflect.Method.invoke(Method.java:597)
> at 
> org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
> at 
> org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
> at 
> org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
> at 
> org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
> at testutil.AutowireRule$AutowireStatement.evaluate(AutowireRule.java:74)
> at 
> org.junit.runners.BlockJUnit4ClassRunner.runNotIgnored(BlockJUnit4ClassRunner.java:79)
> at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:71)
> at 
> org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:49)
> at org.junit.runners.ParentRunner$3.run(ParentRunner.java:193)
> at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:52)
> at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:191)
> at org.junit.runners.ParentRunner.access$000(ParentRunner.java:42)
> at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:184)
> at org.junit.runners.ParentRunner.run(ParentRunner.java:236)
> at 
> org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:50)
> at 
> org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
> at 
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:467)
> at 
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:683)
> at 
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:390)
> at 
> org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.ja

Re: How to get ClickType, Device Stats using get service of AdGroupService

2012-07-24 Thread Kevin Winter
Hi,
  We strongly encourage you to use Reports where statistics are concerned. 
 Reports are faster, cost less units and impose less burden on our servers. 
 Additionally, you cannot perform segmentation with the existing SOAP 
services.

- Kevin Winter
AdWords API Team

On Friday, July 20, 2012 8:41:10 AM UTC-4, road11 wrote:
>
> Not sure it's possible using the AdGroupService. As I look through the API 
> doces (*
> https://developers.google.com/adwords/api/docs/reference/v201109_1/AdGroupService
> *),
>  
> I don't see any place where those data items are selectable. I haven't been 
> working with this API for a long time, but what I've seen is if you want 
> metrics that get down to a granular level like that, you pretty much have 
> to use AdHocs. But I could be wrong (somebody correct me if I am).
>  
> Eric
>
> On Friday, July 20, 2012 4:58:42 AM UTC-4, Sanju wrote:
>
>> Hi,
>>
>> how can I get Stats of adGroup with respect of Device, Search and Display 
>> network and ClickType using get service of AdGroupService. I can get 
>> through AdHoc reports but I want to get through get service.
>>
>> *My code follows like this:*
>> *
>> *
>> Long adrpId = Long.parseLong("X");*
>> *
>> Selector selector = new Selector();
>> String startDate ="20120701";
>> String endDate = "20120701";
>> selector.setDateRange(new DateRange(startDate, endDate));
>> selector.setFields(new String[] {
>> "AdGroupName","CampaignId","AdGroupId","Status", 
>> "AdNetworkType1","AdNetworkType2","Device", "ClickType",
>> "Impressions", "Clicks", "Cost", 
>> "Conversions","AveragePosition","ConversionsManyPerClick"
>> });
>>
>>
>> Predicate adgrpIdPredicate = new Predicate("Id", 
>> PredicateOperator.IN, new String[] {adrpId.toString()});
>> selector.setPredicates(new Predicate[] {adgrpIdPredicate});
>>
>> // Get all ad groups.
>> AdGroupPage page = adGroupService.get(selector);
>>
>> // Display ad groups.
>> if (page.getEntries() != null) {
>> for (AdGroup adGroup : page.getEntries()) {
>>   // here I need to display each adgroup clicks, impressions of 
>> network and device wise 
>> }
>> }*
>> *
>>
>>
>> Thnx in adv.
>>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Triplicate keywords in TargetingIdeaService v201206

2012-07-24 Thread Kevin Winter
Hi,
  I didn't notice this when testing.  Could you please provide specific 
examples of your search criteria so I can test?

- Kevin Winter
AdWords API Team

On Friday, July 20, 2012 7:46:20 AM UTC-4, Daniel Bergholm wrote:
>
> I'm using the TargetingIdeaService to get keyword suggestions for a given 
> web page. I'm not really interested in the match type, just the keyword 
> texts.
> With v201109, I would filter on match type BROAD, and request CRITERION 
> attributes (I'm using the Java client library v8.7.0):
>
> TargetingIdeaSelector selector = new TargetingIdeaSelector();
> selector.setRequestType(RequestType.IDEAS);
> selector.setIdeaType(IdeaType.KEYWORD);
> selector.setSearchParameters(new SearchParameter[]{
> new RelatedToUrlSearchParameter(null, new String[]{url}, 
> false),
> new KeywordMatchTypeSearchParameter(null, new 
> KeywordMatchType[]{KeywordMatchType.BROAD}),
> new LanguageSearchParameter(null, new Language[]{new 
> Language(languageCriteria, null, null, null, null)}),
> new LocationSearchParameter(null, new Location[]{new 
> Location(countryCriteria, null, null, null, null, null, null)})});
> selector.setRequestedAttributeTypes(new 
> AttributeType[]{AttributeType.CRITERION});
> selector.setPaging(new Paging(0, 20));
>
> TargetingIdeaServiceInterface targetingIdeaService = 
> adWordsServiceFactory.createTargetingIdeaService();
> TargetingIdeaPage page = targetingIdeaService.get(selector);
> List keywords = new LinkedList<>();
> if (page.getEntries() != null) {
> for (TargetingIdea idea : page.getEntries()) {
> CriterionAttribute value = (CriterionAttribute) 
> idea.getData()[0].getValue();
> Keyword keyword = (Keyword) value.getValue();
> keywords.add(keyword.getText());
> }
> }
> return keywords;
>
> With v201206, I can no longer filter on match type, and I have to request 
> attribute KEYWORD_TEXT instead of CRITERION. This would be fine for my use 
> case. However, I seem to be getting three of each keyword text. I assume 
> this is one for each match type (BROAD, EXACT, PHRASE). However, it doesn't 
> make much sense since I can't get information about the match type. In my 
> case, since I'm just interested in getting 20 keyword suggestions; I have 
> solved it by requesting 3 times as many results and then filtering out the 
> duplicates:
>
> TargetingIdeaSelector selector = new TargetingIdeaSelector();
> selector.setRequestType(RequestType.IDEAS);
> selector.setIdeaType(IdeaType.KEYWORD);
> selector.setSearchParameters(new SearchParameter[]{
> new RelatedToUrlSearchParameter(null, new String[]{url}, 
> false),
> new LanguageSearchParameter(null, new Language[]{new 
> Language(languageCriteria, null, null, null, null)}),
> new LocationSearchParameter(null, new Location[]{new 
> Location(countryCriteria, null, null, null, null, null, null)})});
> selector.setRequestedAttributeTypes(new 
> AttributeType[]{AttributeType.KEYWORD_TEXT});
> selector.setPaging(new Paging(0, 60));
>
> TargetingIdeaServiceInterface targetingIdeaService = 
> adWordsServiceFactory.createTargetingIdeaService();
> TargetingIdeaPage page = targetingIdeaService.get(selector);
> Set keywords = new LinkedHashSet<>();
> if (page.getEntries() != null) {
> for (TargetingIdea idea : page.getEntries()) {
> StringAttribute attribute = (StringAttribute) 
> idea.getData()[0].getValue();
> keywords.add(attribute.getValue());
> }
> }
> return keywords;
>
> I this a bug in v201206, or am I missing something?
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Flexible reach

2012-07-24 Thread Kevin Winter
Hi,
  Flexible Reach settings were added in 
v201206-
 you can't specify them in v201109.  Here's an example of how to use them 
in v201206 in the java 
library
.

- Kevin Winter
AdWords API Team

On Friday, July 20, 2012 1:21:34 AM UTC-4, take wrote:
>
>
> Hi,
>
> Please let me know about "Flexible reach" of campaign. 
>
>
> API Version
> ---
> AdWords API 201109
> AdWords API Java Client Library - v8.4.2
> ---
>
> networking set request
> 
> 
> true
> true
> true
> true
> 
> 
>
>
> response error
> 
> http://www.w3.org/2001/XMLSchema-instance";>
> operations[0].operand.networkSetting
> 
> TargetError.TARGET_ERROR
> TargetError
> TARGET_ERROR
> 
> 
>
>
> Please teach me how to use AdWords API V201109.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 use "local search trends" (usa) via google api

2012-07-24 Thread Kevin Winter
Hi Chirag,
  The TrafficEstimatorService is intended to provide estimates, not trends 
over time.  Values returned are based on historical observed values as well 
as projections.  This isn't currently possible.

- Kevin Winter
AdWords API Team

On Saturday, July 21, 2012 7:24:09 AM UTC-4, Chirag wrote:
>
> Hi Kevin,
>
> Yes, I can use traffic estimate service.
> But i am not able to found any date selector.
> Using this service i cannot get trends for past few months as local search 
> trends.
>
> Thanks,
> chirag
>
> On Wednesday, July 6, 2011 8:07:48 PM UTC+5:30, Kevin Winter wrote:
>>
>> Hi,
>>   This java example linked from the documentation explains how to use the 
>> TrafficEstimatorService to retrieve the estimated clicks and other 
>> statistics for keywords: 
>> http://www.google.com/codesearch/p?hl=en#9RD3n1d8sRQ/trunk/examples/v201101/GetTrafficEstimates.java&q=Tags:.*TrafficEstimatorService%20v201101%20package:google-api-adwords-java%7Cgoogle-api-adwords-php%7Cgoogle-api-adwords-python-lib%7Cgoogle-api-adwords-dotnet%7Cgoogle-api-adwords-ruby%7Cgoogle-api-ads-ruby%7Cgoogle-api-adwords-perl&sa=N&ct=rx&cd=2
>>
>> - Kevin
>>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: TimeZone in BudgetOrderService

2012-07-24 Thread Kevin Winter
Hi Alexander,
  Jim posted some answers 
here. 
 I'm going to try to get the documentation updated to make this more clear.

- Kevin Winter
AdWords API Team

On Thursday, June 21, 2012 9:16:23 AM UTC-4, Alexander Nitschke wrote:
>
> I feel there is an apparent lack of questions for the new features of the 
> 201109_1 API version. Well, we totally welcome the new BudgetOrderService 
> as we are able to eliminate one more manual step in the account creation 
> process. However, I have a question regarding a detail: The fields 
> startDateTime and endDateTime in the 
> BudgetOrderneed
>  a time zone information, fair enough (despite the TimeZone displayed 
> always is the one of the account, so this wouldn't really be necessary 
> IMO). But I was only able to use America/Los_Angeles like in the linked 
> description, other time zones like Europe/Berlin were rejected with an 
> API-exception that the timezone couldn't be identified which is a bug I 
> think.
>
> I like to think that the possible time zones here should be the same as in 
> the CreateAccountService, because I'm not particularly fond of 
> programmatically incorporating differences in daylight saving time from Los 
> Angeles to various time zones of our customers (or eliminate the time zone 
> altogether and assume the account time zone - like in the GUI). 
> Additionally I suggest some code for "now" for the startDateTime since this 
> actually is the only startDateTime we use.
>
> Thanks for answers
> Alexander
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Questions about BudgetOrderService

2012-07-24 Thread Kevin Winter
Hi Jim,
  I'm pretty sure you need to use the Id from a BillingAccount returned by 
BOS.getBillingAccounts
.

- Kevin Winter
AdWords API Team

On Thursday, July 19, 2012 5:34:21 PM UTC-4, Jim McCabe wrote:
>
> Still awaiting info about the "billing account ID".

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Getting error "!!!1|||-1|||Unexpected exception???" while using adhoc report service

2012-07-24 Thread Kevin Winter
Hi Chirag,
  Does this consistently happen for the same ReportDefinition XML and CID? 
 Is it sporadic or happening frequently?  Does retrying help? (we recommend 
retrying after a delay for this error in general).

If it's happening consistently, could you please provide an example CID and 
XML?

- Kevin Winter
AdWords API Team

On Thursday, July 19, 2012 6:26:27 AM UTC-4, Chirag wrote:
>
> Hello All,
>
> Getting error "!!!1|||-1|||Unexpected exception???" while fetching report 
> using ADHOC reporting service.
> Getting this error now from last few days.
> Not found any help what i am doing wrong.
> this is working fine previously.
>
>
> Thanks,
> Chirag
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: New version of the Php Client Libraty

2012-07-24 Thread Kevin Winter
Hi,
  We're hard at work trying to get v201206 support for the PHP library. 
 We're hoping to release it in the next week or so.

- Kevin Winter
AdWords API Team

On Wednesday, July 18, 2012 2:57:02 PM UTC-4, Ashley Bennett wrote:
>
> Since v. 201206 is out now, I am wondering if there is a new version of 
> the PhP Client library that will be released as well, or if all I have to 
> do in order to use the new version is use a new namespace and wsdl location?
>
> 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: API results don't match AdWords

2012-07-24 Thread Kevin Winter
Hi Matt,
  It's entirely possible that there is something not being filtered out 
(this is the most common cause of differences between the UI and API).  Can 
you please provide the ReportDefinition XML for a specific report and the 
account you are running this again so we can investigate?

- Kevin Winter
AdWords API Team

On Wednesday, July 18, 2012 2:24:44 PM UTC-4, BoboTheGreat wrote:
>
> We are using code that we have used in the past (with some updates to work 
> with the current version of the Google API).  The problem we see is that 
> the results are imported into our db, but the cost, clicks, impressions, 
> and other metrics don't match what we see using AdWords.  We are using 
> older dates, for example comparing a keyword/adgroup/campaign/matchtype on 
> 7/4 and reviewing those.  But our API data seems to show consistently 
> higher values than AdWords.  It may be a fluke in our code but I'd like to 
> know if there is a way I can ensure we don't have values filtered out in 
> AdWords that may be causing these discrepancies.
>
> Thanks,
> Matt
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: getting monthly searches and competition for the source keyword besides for suggested keywords

2012-07-24 Thread Kevin Winter
Hi Alex,
  This is no longer possible (as of ~v201109).  You have to make a separate 
STATS request for the seed keyword.

- Kevin Winter
AdWords API Team

On Wednesday, July 18, 2012 12:15:37 PM UTC-4, Alex76 wrote:
>
> Hi,
> I have a list of source keywords and want to obtain monthly searches and 
> competition data for these source keywords in the same call made to obtain 
> suggested keywords for each source keyword.
>
> For example for the source keyword "boat" I obtain the following suggested 
> keywords:
>
> * "boat trader" with a competition "low" and global monthly searches 
> "368,000".
> * "boat parts" with a competition "high" and global monthly searches 
> "201,000".
> ...
>
> I obtain that data using a single call of the type 
> targetingIdeaService.get(selector). 
>
> What I want to do is getting competition and global monthly searches for 
> the source keyword ("boat", in this case) in that same call. I understand 
> that I should pass some particular AttributeType but I don't know which one.
>
> Could you help me please?
>
> Thanks,
> Alex
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Timeout on .net client library v14.5, API version v201109

2012-07-24 Thread Maurício Alves de Souza Oliveira
Hello Alexander, 

I made the downgrade to v14.4, however, I'm still getting a "timed out" 
error (much less frequent, fortunately). 

I have runned it again for the clients that I have received the timed out 
error and everything worked. Maybe it's not a 100% reliable workaround.

Let's see if there is a better solution from Google Team.

Thank you for your help!

Mauricio

Em terça-feira, 24 de julho de 2012 14h57min13s UTC-3, Alexander Nitschke 
escreveu:
>
> Hello Maurício,
>
> it most likely is the same as issue 87. We have the same problem, and it 
> looks like there is no better solution than reverting to v14.4 of the .NET 
> API. At least I didn't find anything which worked. Even using isolated 
> tasks and cancelling them if needing too long isn't working as no report 
> will work once the first fails.
>
> I sure need a working solution as well.
>
> Alexander
>
>
> Am Dienstag, 24. Juli 2012 17:28:45 UTC+2 schrieb Maurício Alves de Souza 
> Oliveira:
>>
>>
>> Is there any limit of time to get reports via API? Is there any relation 
>> between this kind of error and this issue 
>> http://code.google.com/p/google-api-adwords-dotnet/issues/detail?id=87 ?
>>
>>
>>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 download named report C#

2012-07-24 Thread Kevin Winter
Hi Eric,
  Here's the DotNet client library example for downloading a Criteria 
Report via AdHoc reports: 
http://code.google.com/p/google-api-adwords-dotnet/source/browse/trunk/examples/adwords/csharp/v201206/Reporting/DownloadCriteriaReport.cs

Please note that you can optionally use AWQL to download reports now too 
(which is even easier): 
https://developers.google.com/adwords/api/docs/guides/awql
*
*
- Kevin Winter
AdWords API Team

On Wednesday, July 18, 2012 6:05:16 AM UTC-4, Dorian Kind wrote:
>
> Hi Eric,
>
> I have absolutely zero knowledge of C#, but this link might help you to 
> get a general idea about ad hoc reports: <
> https://developers.google.com/adwords/api/docs/guides/reporting>
> It's basically a synchronous HTTP request with your report definition as 
> data, returning the desired report.
>
> Hope this helps,
> Dorian
>
> On Tuesday, July 17, 2012 2:11:04 PM UTC+2, road11 wrote:
>>
>> Thank you, Dorian. No, I didn't know that. I've been slinging Microsoft 
>> code for nearly 20 years, but still relatively new to the Adwords API with 
>> .Net. So I have to create an ad-hoc report with C# and then I can call it 
>> by it's id? Might you know of some C# examples where I can see where you do 
>> this?
>>
>> Thanks in advance for your kind response.
>>
>> Eric
>>
>> On Tuesday, July 17, 2012 7:16:07 AM UTC-4, Dorian Kind wrote:
>>>
>>> You probably know this, but if the reports were originally defined in 
>>> the UI, they will not be available via the API. Apart from that, I can't 
>>> offer any help but I'd recommend using ad hoc reports instead of the 
>>> ReportDefinitionService (which will be deprecated anyway).
>>>
>>> Cheers
>>>
>>> On Monday, July 16, 2012 8:48:00 PM UTC+2, road11 wrote:

 Using the C# v201109_1 code samples as a model, I'm trying to download 
 one of our many previously defined and named reports. Here's the code that 
 Google gave us to get our report definitions that isn't working (assuming 
 a 
 valid AdwordsUser object)...


   ReportDefinitionService reportDefinitionService = 
 (ReportDefinitionService) user.GetService(
   AdWordsService.v201109_1.ReportDefinitionService);
  
   // Create the selector.
   ReportDefinitionSelector selector = new ReportDefinitionSelector();
  
   try {
 // Get all report definitions.
 ReportDefinitionPage page = reportDefinitionService.get(selector);
  
 // Display report definitions.
 if (page != null && page.entries != null && page.entries.Length > 
 0) {
   foreach (ReportDefinition reportDefinition in page.entries) {
 writer.WriteLine("ReportDefinition with name \"{0}\" and id 
 \"{1}\" was found.",
 reportDefinition.reportName, reportDefinition.id);
   }
 } else {
   writer.WriteLine("No report definitions were found.");
 }
  
   } catch (Exception ex) {
 throw new System.ApplicationException("Failed to retrieve report 
 definitions.", ex);
   }


 ...however, this code keeps telling me that page.entries is null. We've 
 got at least 1400 named reports defined in this Google Adwords account. 
 How is it possible that this code can find none of them? I thought the 
 selector might be the problem, but the ReportDefinitionSelector doesn't 
 even have a fields property, so that can't be the issue. 


 I would be most grateful if someone could post a (working) C# example of 
 how to get a list of available reports and how to download a single named 
 report from an Adwords account.


 Thank you in advance.



-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Adowrds Error

2012-07-24 Thread Kevin Winter
Hi,
  Just to confirm, are you accessing the production or sandbox 
environments?  This should only work in sandbox.  Are you authenticating 
with this same account in the request?  I believe that in sandbox it 
expects you to use the authenticating account in the developer token.

- Kevin Winter
AdWords API Team

On Tuesday, July 17, 2012 2:17:51 PM UTC-4, Pintu wrote:
>
> Hi David,
>
> Thanks for reply.
> I have used adwords@getserviced.com .au
>
> Please check and let me.
>
> -- 
> *Thanks and Regards,*
> *Pravin Uttarwar *
> Mobile: +91 9371288080
>
>
>
>
> On 17 July 2012 23:45, David Torres wrote:
>
>> Hi,
>>
>> The email adwords@mydomain.com.au seems not to be a registered 
>> Google email. You need to create an AdWords account using that email 
>> address.
>>
>> Best,
>>
>> -David Torres - AdWords API Team
>>
>> On Wednesday, July 11, 2012 10:53:59 AM UTC-4, Pintu wrote:
>>>
>>> Hi ,
>>>
>>> We are using Java library for Adwords, and getting following error :
>>>
>>>  {https://adwords.google.com/**api/adwords/cm/v201109}**
>>> ApiExceptionFault
>>> :[**QuotaCheckError.INVALID_TOKEN_**HEADER @ ;
>>> trigger:'adwords.tas@**mydomain.com.au
>>> ++AUD']ApiException>> ApplicationException.Type><**errors xmlns:xsi="http://www.w3.org/**
>>> 2001/XMLSchema-instance " 
>>> xsi:type="QuotaCheckError"><**fieldPath/>adwords.**
>>> t...@mydomain.com.au ++AUD>> trigger>**QuotaCheckError.INVALID_TOKEN_**
>>> HEADERQuotaCheckError>> ApiError.Type>INVALID_**TOKEN_HEADER
>>>
>>> I have pasted some error message here and I have configured the 
>>> adwords.properties file as well properly including developerToken=adwor*
>>> *ds@mydomain.com .au++AUD
>>>
>>> Please suggest the solution we are struggling a lot here.Any help will 
>>> be appreciated.
>>>
>>  -- 
>> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>> 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
>>
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: TotalConvValue always returning as integer

2012-07-24 Thread Kevin Winter
Hi,
  We've removed this field from v201206 stats - reports are the preferred 
method for obtaining stats.  As far as I can tell with my testing, 
TotalConvValue comes back as a decimal in reports.

- Kevin Winter
AdWords API Team

On Tuesday, July 17, 2012 10:48:37 AM UTC-4, Eduardo Matos wrote:
>
> I'm using the PHP Library to access the Adwords API, but the *
> totalConvValue* field is always returning as integer. In Adwords 
> interface it appears to be decimal. Is there any known issues about this?
>
> I inspected the SOAP response, and the values are in fact returning as 
> integer.
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: AWQL Queries

2012-07-24 Thread Kevin Winter
Hi,
  I responded on your other 
thread: https://groups.google.com/d/msg/adwords-api/pRldQYacsxs/exRuQt10gWoJ

TL;DR: you need square brackets and no "array" keyword.

- Kevin Winter
AdWords API Team

On Tuesday, July 17, 2012 9:53:25 AM UTC-4, jayshree bhongle wrote:
>
> Hi,
> I am using the following query to get my stats for all the campaigns whose 
> campaign names are lised in array.
> But its giving me a an error as  "!!!2|||-1|||[INVALID_WHERE_CLAUSE]???"
> I am unable to use IN Operator where as I Get results If I use = Operator 
> and pass one campaign name
>
>
>  "SELECT CampaignName,CountryCriteriaId,Conversions,TotalConvValue
>FROM   GEO_PERFORMANCE_REPORT WHERE  CampaignName  IN  array('Taj 
> Mahal Palace','Taj Mahal Palace')  DURING 20120708,20120714";
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: AWQL Queries

2012-07-24 Thread Kevin Winter
Hi,
  It's not terribly clear (I've filed a request to improve this), but to 
specify a list of strings, you need to specify your query like so:

SELECT CampaignName,CountryCriteriaId,Conversions,TotalConvValue FROM   
GEO_PERFORMANCE_REPORT WHERE CampaignName  IN  ['Taj Mahal Palace','Taj 
Mahal Palace']  DURING 20120708,20120714

- Kevin Winter
AdWords API Team

On Tuesday, July 17, 2012 9:38:48 AM UTC-4, ja wrote:
>
> Hi,
> I am using the following query to get my stats for all the campaigns whose 
> campaign names are lised in array.
> But its giving me a an error as  "!!!2|||-1|||[INVALID_WHERE_CLAUSE]???"
> I am unable to use IN Operator where as I Get results If I use = Operator 
> and pass one campaign name
>
>
>  "SELECT CampaignName,CountryCriteriaId,Conversions,TotalConvValue
>FROM   GEO_PERFORMANCE_REPORT WHERE CampaignName  IN  array('Taj Mahal 
> Palace','Taj Mahal Palace')  DURING 20120708,20120714";
>

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

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


Sandbox MCC GetCampaigns Not Generating Test ClientCustomerId Values

2012-07-24 Thread elroyskimms
I'm using the .Net library, v201206 (VB). Using the sample 
AdWords.Examples.VB project, I can run GetCampaigns and receive result of 0 
campaigns, as expected. From what I can tell, this is supposed to generate 
5 Client accounts for the Sandbox MCC account. However, it appears that 
these 5 Client accounts are not being created. Running the examples program 
with the command line switch GetAccountHierarchy results in an 
"InternalApiError.UNEXPECTED_INTERNAL_API_ERROR". GetAccountHiearchy, if I 
am reading everything correctly, should be making the Get call referenced 
in the Getting Started article (
https://developers.google.com/adwords/api/docs/sandbox).

> In subsequent calls for a client account, you will need to specify its
> clientCustomerId (clientEmail is no longer an option). You can use*
> ServicedAccountService.get()*to
>  retrieve client customer IDs.
>
How do I get the ClientCustomerId's generated for my Sandbox MCC account?

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Speed difference client login and oAuth

2012-07-24 Thread Kevin Winter
Hi,
  We haven't seen this problem in the sandbox with OAuth (I've personally 
tested with Python and Java).  It's possible there's a bug in the DotNet 
client library.  Could you please file an issue on the project issue 
tracker
?

- Kevin Winter
AdWords API Team

On Tuesday, July 17, 2012 3:09:02 AM UTC-4, John wrote:
>
> This is on the sandbox. We are still waiting for a developer token, so we 
> haven't had the chance to try it on production.
>
> Does anybody know if this problem is related to the sandbox?
>
> On Thursday, July 12, 2012 5:53:27 PM UTC+2, yagmur wrote:
>>
>> I'm curious to hear the reason for such slowdown as I was going to 
>> implement OAuth very soon.
>>
>> By the way, is this sandbox or production?
>>
>> y
>>
>> On Thu, Jul 12, 2012 at 11:30 AM, John wrote:
>>
>>> While implementing the .Net AdWords library, I ran into a strange 
>>> situation I just can't explain. I've written a test script that performs 
>>> some actions, like loading a report, retrieving all campaigns, etc. When 
>>> using client login this script takes about 6 seconds to run. However when 
>>> using oAuth it takes 5 minutes and 4 seconds to complete this requests. How 
>>> can there can be such a huge difference?
>>>
>>> Some actions (like loading the report) seem equally fast, some actions 
>>> actually take more then 50 times as long. I've attached 
>>> two screenshots where you can see the difference.
>>>
>>> Could anyone explain this to 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
>>>
>>
>>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Sandbox Problem: [OperationAccessDenied.ADD_OPERATION_NOT_PERMITTED @ operations[0]]

2012-07-24 Thread Kevin Winter
Hi,
  If you were affected by this bug, we recommend using a new sandbox 
account.  You can create a brand-new gmail account for sandbox usage. 
 Please let us know if you're still seeing this with a new account.

- Kevin Winter
AdWords API Team

On Tuesday, July 17, 2012 1:41:31 AM UTC-4, Wasi wrote:
>
> I am also facing this same issue. can anybody please help me for this? 
> I've also spent hours getting more and more frustrated. Please can someone 
> tell me how to get the sandbox working? I am unable to add Campaigns.
> i have also followed the following steps but the same issue is there. 
>
> a. Call GetAllCampaigns example to initialize the sandbox if not done 
> already.
> b. Call GetAccountHierarchy example to get the list of sandbox accounts.
> c. Use one of those customerIds to make remaining calls.
>
> GetAccountHierarchy return 0.
>
>
>
>
> On Monday, March 5, 2012 6:43:10 AM UTC+5, Rallan wrote:
>>
>> In my live Adwords account I can add a new campaign without a problem, 
>> but I have been trying to use the sandbox without success. I can test for 
>> existing campaigns in the sandbox (none found) but I am unable to add a 
>> new campaign. I get the error:
>>
>> [OperationAccessDenied.ADD_OPERATION_NOT_PERMITTED @ operations[0]]
>>
>> I am logging in with the following set-up:
>>
>> AUTH.INI
>>
>> email = "x...@gmail.com"
>> password = ""
>> userAgent = "My Adwords Tool"
>> applicationToken = "ignored"
>> developerToken = "x...@gmail.com++GBP"
>>
>> SETTINGS
>>
>> DEFAULT_VERSION = "v201109"
>> DEFAULT_SERVER = "https://adwords-sandbox.google.com";
>> COMPRESSION = 1
>> COMPRESSION_LEVEL = 1
>> WSDL_CACHE = 0
>> VERIFY_PEER = 0
>>
>> MY SCRIPT
>>
>> $campaignService = $user->GetCampaignService('v201109', '
>> https://adwords-sandbox.google.com');
>>
>>
>> I have looked around online but found no actual answers. As far as I can 
>> tell I what's missing is a sandbox generated clientId, or possibly 
>> a clientCustomerId? However, I have been unable to find out how I get this! 
>> I have tried using my normal clientId but it is rejected 
>> (AuthenticationError.CUSTOMER_NOT_FOUND). 
>>
>> I'm going nuts here. I've spent hours getting more and more frustrated. 
>> Please can someone tell me how to get the sandbox working?
>>
>

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

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


Re: ReportDefinition Class object for v201206

2012-07-24 Thread Kevin Winter
To clarify, yes, they have been removed permanently with v201206.  The 
published XSDs can be used to generate code/serialize objects.

- Kevin Winter
AdWords API Team

On Monday, July 16, 2012 7:58:23 PM UTC-4, valeriy wrote:
>
> They are in a separate xsd now:
>
>
> https://adwords.google.com/api/adwords/reportdownload/v*MM*/reportDefinition.xsd
>
>
>
> On Thursday, July 12, 2012 1:47:33 PM UTC-7, Ian wrote:
>>
>> I have been tasked with upgrading our solution to v201206 from v201109, 
>> and I am running into a major road block. We use our own custom built .Net 
>> proxy and clients to access the api, and while running wsdl I noticed 
>> several missing classes related to reports, specifically ReportDefinition. 
>> I know VS tends to hide/remove classes, but these aren't in 
>> https://adwords.google.com/api/adwords/cm/v201206/ReportDefinitionService?wsdl;
>>  however 
>> from the release notes it looks like they should still be 
>> present. I realize the predefined reports have been sunset, but the class 
>> was helpful in building the xml for the ad-hoc reports. Any indication as 
>> to whether this was permanently removed would be very helpful. 
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Java Library Migration : ImageUtils Gone

2012-07-24 Thread Kevin Winter
For future forum readers: 
http://code.google.com/p/google-api-ads-java/issues/detail?id=15
TL;DR: we refactored the way we do utilities in the new java library, check 
examples to find the correct one.

- Kevin Winter
AdWords API Team

On Monday, July 16, 2012 12:29:43 PM UTC-4, Pete Lavetsky (AdWords API 
Guru) wrote:
>
> We used to utilize com.google.api.adwords.lib.utils.ImageUtils quite a bit 
> specifically for this method: ImageUtils.getImageDataFromUrl( url )
>
> This utility doesn't seem to be available in the new 1.5.0 Java library 
> rewrite
>
> Guidance?
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Do AdParams changes show in CustomerChangeData?

2012-07-24 Thread Kevin Winter
Hi Akil,
  AdParams will not show up in the CustomerSyncService.  Currently, 
AdParams can only be updated via the API, so if you have sole API access to 
an account, only your own changes should modify AdParams.  Can you 
elaborate on why you need to sync this data?

- Kevin Winter
AdWords API Team

On Monday, July 16, 2012 4:20:13 AM UTC-4, Akil Burgess wrote:
>
> Ping?
>
> On Thursday, July 12, 2012 7:05:38 AM UTC+1, Akil Burgess wrote:
>>
>>
>> Hi All,
>>
>> Are changes made to AdParams accessible via the CustomerSyncSelector? If 
>> not, any suggestions for ways to keep AdParams information up-to-date?
>>
>> Thanks,
>> Akil
>>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: google calendar api update event error

2012-07-24 Thread Kevin Winter
Hi,
  I'm afraid you have the wrong forum.  Try here: 
https://groups.google.com/forum/?fromgroups#!forum/google-calendar-help-dataapi

- Kevin Winter
AdWords API Team

On Monday, July 16, 2012 5:56:57 AM UTC-4, Sy Buena wrote:
>
> currently im developing google calendar with my own version of codes and, 
> lucking i manage's to work with auth and other api rather than this update 
> event that use's put curl
> this is my codes: 
> //this is just an example 
> $url = '
> https://www.googleapis.com/calendar/v3/calendars/sybuena2%40gmail.com/events/jplm392ehi1bv4sjghto3uaitk?access_token=ya29.AHES6ZQ4z4YH3wq0LsAozy7r9iv0v_P-0IJLiSORfAt2qj2YJ7VnL8w&key=AIzaSyBL8l1-TdF7DnYIutuZwVzz2MbgsTF2orM
> ';
> //this is just an example 
> $query = '
> {"end":{"dateTime":"2012-07-17T00:00:00+08:00"},"start":{"dateTime":"2012-07-16T00:00:00+08:00"},"description":"WTF"}
> ';
> $ch = curl_init($url);
> curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
> curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "PUT");
> curl_setopt($ch, CURLOPT_PUT, 1); 
> curl_setopt($ch, CURLOPT_POSTFIELDS,$query);
>  $response = curl_exec($ch);
>
> and for this code im getting an error of :
>
> {
>  "error": {
>   "errors": [
>{
> "domain": "global",
> "reason": "required",
> "message": "Required"
>}
>   ],
>   "code": 400,
>   "message": "Required"
>  }
> }
>
>
> and thats the problem... hopefully someone can help me!
>
>

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

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


Re: do enum fields ever change?

2012-07-24 Thread Kevin Winter
+1 to these points.  We try our best not to not change enum values 
mid-release (only on version boundaries), but mistakes can happen.

- Kevin Winter
AdWords API Team

On Friday, July 13, 2012 10:03:44 AM UTC-4, jstedman wrote:
>
> These values are unlikely to change for a specific API version release, 
> but across releases it is very likely that they will change. Even non enum 
> fields have caused me this type of headache in the past. Generally it is 
> better to design your report processing so it would handle any new values 
> gracefully(default enum value to unknown when you cannot encode something 
> to a known value, default un-parseable numeric values to an error value 
> like -1 and always print out a conspicuous warning in your logs) since in 
> reality strange things happen all the time elsewhere in the Googleverse 
> which cause the documentation to no longer reflect what shows up in a 
> report. 
>
> The last time I remember this happening was in 201101 when "Auto" and 
> "Auto: xx.xx" started appearing in an otherwise purely numeric cpc bid 
> column of reports for budget optimized campaigns. This was a change that 
> was undocumented and I assume occurred upstream of the API. Needless to 
> say, there was special processing required to get these values into a 
> double field in mysql.
>
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Upgrading to v201206

2012-07-24 Thread Kevin Winter
Hi Simon,
  The ManagedCustomerService uses a Generic Selector (unlike the 
ServicedAccountService, which used it's own).  This selector is shared from 
the CM namespace: 
https://developers.google.com/adwords/api/docs/reference/latest/ManagedCustomerService.Selector

You will need an xmlns='https://adwords.google.com/api/adwords/cm/v201206' 
on the serviceSelector element (I believe) - just like how you specify the 
cm namespace for the RequestHeader elements.

Might I recommend the VB.net client 
librarythat handles this 
for you?

- Kevin Winter
AdWords API Team

On Friday, July 13, 2012 8:16:41 AM UTC-4, Simon Day wrote:
>
> Hi,
>
> We have developed a number of custom VB functions to enable reporting on 
> and managing Adwords accounts. I'm trying to upgrade from v201109 to 
> v201206 but seem to be having issues straight away!
>
> The first thing I need to do is list the client accounts under a given MCC 
> account. I can see the service I need to use has changed from 
> ServicedAccountService to ManagedCustomerService, so having updated to this 
> and swapped the 'Selector' to 'serviceSelector', and specified valid fields 
> but am getting the error "[SelectorError.MISSING_FIELDS @ serviceSelector]" 
> when posting to the production environment, and 
> "InternalApiError.UNEXPECTED_INTERNAL_API_ERROR" when posting to the 
> sandbox.
>
> My XML looks like this:
> 
>  xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
> xmlns:xsd='http://www.w3.org/2001/XMLSchema'
> xmlns:cm='https://adwords.google.com/api/adwords/cm/v201206'
> xmlns:mcm='https://adwords.google.com/api/adwords/mcm/v201206'>
>   
> 
>   XXX
>   YYY
>   ZZZ
> 
>   
>   
> 
>   
> Name
> Login
> CompanyName
> CustomerId
> CanManageClients
> CurrencyCode
> DateTimeZone
>   
> 
>   
> 
>
> Can anyone point me in the right direction?
>
> Thanks
> Simon
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: insights for search

2012-07-24 Thread Kevin Winter
Please direct any questions regarding access to the AdWords API to 
adwordsapi-tok...@google.com.

- Kevin Winter
AdWords API Team

On Thursday, July 12, 2012 5:16:00 PM UTC-4, Optimizer Hq wrote:
>
> Hi Anash
>
> We have been trying to get an AdWords API key for months but the Adwords 
> team members we have dealt with so far have not been helpful and we've been 
> getting the run around...
> Can you help? 
>
> Manas
>
> On Friday, June 17, 2011 5:08:52 PM UTC+12, Anash P. Oommen wrote:
>>
>> Hi,
>>
>> You might want to ask about Google Insights for Search on 
>> http://code.google.com/googleapps/support/.
>>
>> Cheers,
>> Anash P. Oommen,
>> AdWords API Advisor.
>>
>>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: QuotaCheckError.INCOMPLETE_SIGNUP_USER_INFO_REJECTED/PENDING - Urgent!

2012-07-24 Thread Kevin Winter
Hi Ro,
  I apologize that this slipped through the cracks.  If this hasn't already 
been resolved, please send your developer token (or CID for that MCC) to me 
off-list.  Typically, this error happens only when the developer token is 
not approved (or has been rejected).

- Kevin Winter
AdWords API Team

On Thursday, July 12, 2012 3:13:50 PM UTC-4, Ro wrote:
>
> Hi,
>
> All of a sudden we get this error for the new users we have created under 
> our main account (the one that holds the developer key token), all the old 
> accounts still working well.
>
> What could have been changed that cause this issue? The subject is urgent, 
> those are accounts of our clients (we are an agency).
>
> Your help is needed!
>
> Ro
>  
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Can API units be transferred

2012-07-24 Thread Kevin Winter
Hi Stefanie,
  The short answer is no, they cannot.  Additionally, I've never seen an 
Agency qualify for free API units (without preferred 
pricing). 
 If you have any further questions, I encourage you to speak with your CSR.

- Kevin Winter
AdWords API Team

On Thursday, July 12, 2012 11:41:08 AM UTC-4, sgreve wrote:
>
> Hi,
>
> can free API units of an agency be transferred from one API account to 
> another?
>
> Thanks
> Stefanie
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Google Adword API and reterieving Placements for Given Keywords

2012-07-24 Thread Kevin Winter
Hi,
  We don't have an example that explicitly shows how to go from keywords -> 
Placements, but this 
exampleshows
 how to get placement ideas (in java) and this 
oneshows
 how to search by seed query (search by keyword isn't supported in the 
latest version of the API or UI).  If you use the 
RelatedToQuerySearchParameter from the second one in place of the 
RelatedToUrlSearchParameter, you should be able to go from query -> 
Placements.  We have similar examples in other languages.

- Kevin Winter
AdWords API Team

On Thursday, July 12, 2012 6:16:13 AM UTC-4, Mohammed Omar wrote:
>
>  i wonder if its possible Retrieving Placements for a given keywords 
> programmatically by calling the Google-API?
>
> if yes can you provide me with a very simple code with any programming 
> language?
>  

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

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


Re: Problem with ClientCustomerId

2012-07-24 Thread Kevin Winter
Hi,

I'm in the process of updating the Sandbox Getting Started 
guideto 
better emphasize use of the client libraries.

   1. To access the sandbox, first you need is a Google account (if you 
   don't have one, create a new 
account). 
   You will use this account's email address and password to set the 
   sandbox-specific request headers.
   2. Edit your client library’s configuration to use your google account 
   username and password (e.g. email: your.n...@gmail.com, password: 
   mys3cr3t).  Set the developer token to email++currencycode (this is a magic 
   value for the sandbox only).  Example: your.n...@gmail.com++USD.  Leave the 
   clientCustomerId blank for now, we’ll come back and edit it later.
  1. Some libraries configure the environment/endpoint in the config 
  file.  We want to make sure we use the SANDBOX environment - the server 
is 
  located at 
   3. Run your client library’s GetCampaigns code example.  Since we left 
   the clientCustomerId blank, this will request the campaigns for a new 
   Sandbox My Client Center (MCC) account (for which your google account is 
   used to authenticate).  MCC accounts don’t have any Campaigns - this is a 
   special hook that the server uses to initialize your account.
  1. This is not the same as the account you’ll sign up for accessing 
  the API with.  The google account you use for the sandbox can be an MCC, 
  regular client account, or even a google account that has no AdWords 
  product associated with it.
   4. Now that your sandbox account has been initialized with 5 client 
   accounts, we need to know the clientCustomerId of them to make requests. 
Run the GetAccountHierarchy example.  This will print out the ID of client 
   account(s) managed by your sandbox MCC.  Edit your configuration file (see 
   step 2) and insert your clientCustomerId of the client account.  This tells 
   the API you are going to authenticate with your google account (which is an 
   MCC in the sandbox) and target the client account corresponding to the 
   clientCustomerId.
   5. Now we can start making requests.  Run the AddCampaigns example 
   followed by the GetCampaigns example.  We’re now specifying a 
   clientCustomerId, so AddCampaigns creates campaigns for the client account 
   and GetCampaigns prints them out.  Try out more code examples to see what 
   they do!

Please let me know if you feel any step needs more/less explanation.

- Kevin Winter
AdWords API Team


On Wednesday, July 11, 2012 9:38:35 AM UTC-4, Francois Sivade wrote:
>
>
>  Hello, I try to use the API Google Adwords. I follow the instructions of 
> the gettin started 
> video, 
> but when i put the "addCampaign" command in the debugguer of my exemple 
> project, i have this error:
>
> v201109_1.GetAdGroups : This code example illustrates how to retrieve all 
> the ad
>  groups for a campaign. To create an ad group, run AddAdGroup.cs.
> v201109_1.GetAccountAlerts : This code example gets all alerts for all 
> clients o
> f an MCC account. The effective user (ClientCustomerId or AuthToken) must 
> be an
> MCC user to get results.
>
> It's strange because in the app.config, i've filled the corresponding tag. 
> Do you have an idea of the problem ?
>
> Thank's for you're attention.
>
> PS: Sorry for my language, i'm French :-)
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: PHP API - TargetingIdeaService - RelatedToUrlSearchParameter - [TargetingIdeaError.INVALID_SEARCH_PARAMETERS @ selector.selector.searchParameters[2].includeSubUrls]

2012-07-24 Thread Josh
Hi Alexander,

so can I assume or not the bulk method will allow for using includeSubUrls ?

Josh

Le mardi 24 juillet 2012 10:41:54 UTC+2, Alexander Nitschke a écrit :
>
> Hi Josh,
>
> please look further down to the documentation for "includeSubUrls". This 
> one is ignored for "KEYWORD" queries, generally the KEYWORD idea query 
> supports only one Url. But I think Kevin's link was misleading as he linked 
> to the v201206 doc and your code is using v201109. Still, the documentation 
> for this specific field hasn't changed. 
>
> Alexander
>
> Am Montag, 23. Juli 2012 19:57:30 UTC+2 schrieb Josh:
>>
>> Hi,
>>
>> thanks for the answer.
>>
>> Sorry I must be blind but the I don't see such mention in provided link, 
>> the documentation states :
>>
>> - "This element is supported by following 
>> RequestTypes:
>>  
>> IDEAS, STATS. " 
>> - "This search parameter can be used in bulk keyword requests through the 
>> TargetingIdeaService.getBulkKeywordIdeas(TargetingIdeaSelector)method"
>>
>> I'm not using the Bulk Method but this parameter was also used to be 
>> supported by versions prior to v201109
>>
>>
>>
>> Le lundi 23 juillet 2012 16:59:02 UTC+2, Kevin Winter a écrit :
>>>
>>> Hi,
>>>   The documentation indicates that for KEYWORD requests (ideaType), this 
>>> field isn't supported: 
>>> https://developers.google.com/adwords/api/docs/reference/latest/TargetingIdeaService.RelatedToUrlSearchParameter#includeSubUrls
>>>
>>> - Kevin Winter
>>> AdWords API Team
>>>
>>> On Friday, June 22, 2012 8:02:25 AM UTC-4, Josh wrote:

 Hi,

 it looks as if the includeSubUrls parameter is not correctly supported 
 as I keep getting this error :

 [TargetingIdeaError.INVALID_SEARCH_PARAMETERS @ 
 selector.selector.searchParameters[2].includeSubUrls]

 My code is really straightforward :

   $targetingIdeaService = $user->GetTargetingIdeaService('v201109');
   // Create selector.
   $selector = new TargetingIdeaSelector();
   $selector->requestType = 'IDEAS';
   $selector->ideaType = 'KEYWORD';
   $selector->requestedAttributeTypes =
   array('CRITERION', 'AVERAGE_TARGETED_MONTHLY_SEARCHES', 
 'COMPETITION', 'NGRAM_GROUP');

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

 $paging->numberResults = 50;

 $search = new RelatedToUrlSearchParameter();
 $search->urls = 'www.foo.com';
 $search->includeSubUrls = true;



-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Timeout on .net client library v14.5, API version v201109

2012-07-24 Thread Alexander Nitschke
Hello Maurício,

it most likely is the same as issue 87. We have the same problem, and it 
looks like there is no better solution than reverting to v14.4 of the .NET 
API. At least I didn't find anything which worked. Even using isolated 
tasks and cancelling them if needing too long isn't working as no report 
will work once the first fails.

I sure need a working solution as well.

Alexander


Am Dienstag, 24. Juli 2012 17:28:45 UTC+2 schrieb Maurício Alves de Souza 
Oliveira:
>
>
> Is there any limit of time to get reports via API? Is there any relation 
> between this kind of error and this issue 
> http://code.google.com/p/google-api-adwords-dotnet/issues/detail?id=87 ?
>
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Report contents are invalid. - !!!1|||-1|||Unexpected exception???

2012-07-24 Thread aengland
Hi,

This happened for the same report for multiple clients.  It was failing for 
random clients each time I ran the process and appeared to not be an issue 
with a specific client.  After July 11 we never had the issue again.  So it 
appears the issue was isolated to the evening of 7/10 and the morning of 
7/11.  Thanks.



On Tuesday, July 24, 2012 10:06:53 AM UTC-4, Kevin Winter wrote:
>
> Hi,
>   I apologize for the inconvenience you experienced.  Did this happen for 
> a single client repeatedly?  Or was it the same report but for multiple 
> clients?  Did it consistently fail for a specific input?  This behavior is 
> certainly unexpected and should not occur.  If it does, please let us know.
>
> - Kevin Winter
> AdWords API Team
>
> On Wednesday, July 11, 2012 9:26:30 AM UTC-4, aengland wrote:
>>
>> I continued to run the process periodically to see if I could get it to 
>> run without error and it finally went through during the 9 AM EST hour 
>> after five more failures during the 7 and 8 AM EST hours this morning.  I 
>> am concerned this will be an ongoing issue.  Please advise.
>>
>> On Wednesday, July 11, 2012 8:47:03 AM UTC-4, aengland wrote:
>>>
>>> Last night (7/10/2012) I received the below error message while calling 
>>> the GetClientReport(oDefinition) method for the KEYWORDS_PERFORMANCE_REPORT 
>>> report type.  
>>>
>>> Google.Api.Ads.AdWords.Util.ReportsException: Report contents are 
>>> invalid. - !!!1|||-1|||Unexpected exception???
>>>
>>> I have tried re-running the same process this morning several times and 
>>> have received the same error message.  The report is pulling for the 
>>> previous days data so it is a small data set.  I have 457 clients to call 
>>> the report for so I am calling the method in batches of 10. I am using v14 
>>> of the DotNet Client Library.  This process has been running fine since 
>>> January so I am not sure why this issue starting occurring all of a 
>>> sudden.  It seems this error is internal to AdWords.
>>>
>>> Thank you for any help in advance.  This issue is causing major problems 
>>> since our data is now out of date.
>>>
>>

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


Timeout on .net client library v14.5, API version v201109

2012-07-24 Thread Maurício Alves de Souza Oliveira
Hello, 

We are using the .net client library v14.5, API version v201109 to get 
campaigns, ad group and ad performance via adhoc report. We're getting "The 
operation has timed out" error message when invoked DownloadClientReport 
method from ReportUtilities class.

We always get this information for the entire account (for each client). 
When we are getting campaign information, we get all campaigns for the 
entire account. The same for adgroups, ads, and keywords.

Our process executes 10 clients in parallel with custom date from yesterday:

dateRangeType = ReportDefinitionDateRangeType.CUSTOM_DATE;
selector = new Selector
{
dateRange = new DateRange
{
min = 
DateTime.Today.AddDays(-1).ToString("MMdd"),
max = 
DateTime.Today.AddDays(-1).ToString("MMdd")
},
fields = 
};

For most of the reports we're using the fields: 
CampaignId, CampaignName, Date, Cost, Ctr, AverageCpc, AveragePosition, 
Clicks, Impressions

The fields Conversions, ConversionsManyPerClick and ViewThroughConversions 
we get from another report with 30 days date range.

The amount of records per report is usually between 500 and 10.000 records 
for each report.

We already tried to change the dateRange from Selector to 
ReportDefinitionDateRangeType.YESTERDAY, with no success.  Also, we have 
tried to run without thread but it still unstable. 

We need to run many times to get all the data.

Is there any limit of time to get reports via API? Is there any relation 
between this kind of error and this issue 
http://code.google.com/p/google-api-adwords-dotnet/issues/detail?id=87 ?

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: Report contents are invalid. - !!!1|||-1|||Unexpected exception???

2012-07-24 Thread Kevin Winter
Hi,
  I apologize for the inconvenience you experienced.  Did this happen for a 
single client repeatedly?  Or was it the same report but for multiple 
clients?  Did it consistently fail for a specific input?  This behavior is 
certainly unexpected and should not occur.  If it does, please let us know.

- Kevin Winter
AdWords API Team

On Wednesday, July 11, 2012 9:26:30 AM UTC-4, aengland wrote:
>
> I continued to run the process periodically to see if I could get it to 
> run without error and it finally went through during the 9 AM EST hour 
> after five more failures during the 7 and 8 AM EST hours this morning.  I 
> am concerned this will be an ongoing issue.  Please advise.
>
> On Wednesday, July 11, 2012 8:47:03 AM UTC-4, aengland wrote:
>>
>> Last night (7/10/2012) I received the below error message while calling 
>> the GetClientReport(oDefinition) method for the KEYWORDS_PERFORMANCE_REPORT 
>> report type.  
>>
>> Google.Api.Ads.AdWords.Util.ReportsException: Report contents are 
>> invalid. - !!!1|||-1|||Unexpected exception???
>>
>> I have tried re-running the same process this morning several times and 
>> have received the same error message.  The report is pulling for the 
>> previous days data so it is a small data set.  I have 457 clients to call 
>> the report for so I am calling the method in batches of 10. I am using v14 
>> of the DotNet Client Library.  This process has been running fine since 
>> January so I am not sure why this issue starting occurring all of a 
>> sudden.  It seems this error is internal to AdWords.
>>
>> Thank you for any help in advance.  This issue is causing major problems 
>> since our data is now out of date.
>>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Criteria report: criteriaType documentation

2012-07-24 Thread Kevin Winter
Hi,
  The Report Types documentation documents the values for Enums.  In 
particular, from the posted link, the CriteriaType field has a full list. 
 You can also get this information from 
ReportDefinitionService.getReportFields.

- Kevin Winter
AdWords API Team

On Wednesday, July 11, 2012 7:36:12 AM UTC-4, Jesper Feldthaus JF wrote:
>
> Have a look at this:
> https://developers.google.com/adwords/api/docs/appendix/reports?#criteria
>
> Den onsdag den 11. juli 2012 07.35.59 UTC+2 skrev dkasak:
>>
>> Hi all. Is there some documentation on the different criteriaType values 
>> we can expect in the Criteria report? I had previously seen placement data 
>> under "User Interest" ( at least I thought it was placement data ), but now 
>> I'm seeing it under "Placement".
>>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Google Adwords "Pending approval"

2012-07-24 Thread Kevin Winter
Please direct any questions regarding access to the AdWords API to 
adwordsapi-tok...@google.com.

- Kevin Winter
AdWords API Team

On Tuesday, July 10, 2012 9:06:10 PM UTC-4, Martino&Binzer wrote:
>
>
>  I have been waiting for weeks to get my Adwords API approved. It is 
> heavily effecting my reporting to clients and is becoming a very large 
> issue I have called and email several times. Please help!
> 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: Problems with ReportUtilities.DownloadClientReport with .NET 14.5.0 client library

2012-07-24 Thread Kevin Winter
Hi Alexander, Eric,
  Eric, thanks for filing an issue on the issue 
tracker.
 
 Anash should followup and resolve this issue there.  If anyone else has 
any extra debugging information they feel is relevant, feel free to add a 
comment on the issue.

- Kevin Winter
AdWords API Team

On Monday, July 23, 2012 12:49:06 PM UTC-4, Alexander Nitschke wrote:
>
> Hello Bejan,
>
> I implemented your suggestion (DEFAULT_REPORT_VERSION = "v201206") now as 
> we migrate to v201206 anyway, and it worked just fine. Thanks for that!
>
> However, the hangup in the DownloadClientReport is still there, and by now 
> it seems to me more like once every fifty downloads. In other words, it is 
> really intolerable by now and I have to resort to these (I feel rather 
> dirty) tactics of creating and, if necessary, killing tasks and dead files. 
> I wonder why the usually helpful Mr.Oommen is quiet here? 
>
> Maybe it has to do with some unusual circumstance for us, but I don't feel 
> the report is anything special. It's just a rather plain 
> AD_PERFORMANCE_REPORT with the raw data (Fields {"Date", "CampaignId", 
> "AdGroupId", "KeywordId", "Id", "Impressions", "Clicks", "Cost", 
> "AveragePosition", "Conversions", "TotalConvValue"}, usually from the day 
> before, sometimes several days...
>
> Alexander
>

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

2012-07-24 Thread Kevin Winter
Hi Ro,
  We strongly recommend using Reports when retrieving statistics, for all 
the reasons Dorian mentions.

- Kevin Winter
AdWords API Team

On Tuesday, July 10, 2012 8:28:20 AM UTC-4, Dorian Kind wrote:
>
> Hi Ro,
>
> generally, if you are only interested in statistics, using the Adhoc 
> reports is preferable as they don't incur any costs and don't require 
> paging if you need to download a large result set. I also feel that they 
> are somewhat faster than using the corresponding service, but that might be 
> subjective. I do not know what could be causing the timeouts you are 
> mentioning, in my experience the report service is very reliable. Maybe it 
> has to do with the issue described here: <
> https://groups.google.com/d/topic/adwords-api/M186skBI42Y/discussion>
>
> Hope this helps & cheers,
> Dorian
>
> On Monday, July 9, 2012 3:44:45 PM UTC+2, Ro wrote:
>>
>> Anyone has input about the subject ?
>>  
>>  
>> Thanks!
>>  
>>
>> On Thursday, July 5, 2012 5:43:13 PM UTC-4, Ro wrote:
>>
>>> Hi,
>>> I saw in the c# documentation & examples that there are 2 ways to get 
>>> reports for campaign stats. One is via the AdHoc reports and the second is 
>>> via the campaignService.
>>> I personally use the campaignService since I found the reports to 
>>> sometime fail with a timeout exception - but I'm afraid I'm missing 
>>> something out.
>>> In general, I use the report for stats like clicks, impressions & avg 
>>> cpc.
>>> Thanks,
>>> Ro
>>>
>>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: conversionsManyPerClick deprecation

2012-07-24 Thread Kevin Winter
Hi Neil,
  We've removed many of the lesser-used stats from the SOAP objects.  The 
Report functionality can obtain this information much more efficiently.

- Kevin Winter
AdWords API Team

On Tuesday, July 10, 2012 8:15:58 AM UTC-4, okieb...@gmail.com wrote:
>
> I just tested with v201206's adhoc report type CRITERIA_PERFORMANCE_REPORT 
> and had  convManyPerClick returned.
>
> On Monday, July 9, 2012 12:04:32 PM UTC-4, neilpaterson wrote:
>>
>> Hi
>>
>> I notice 
>> herethat 
>> conversionsManyPerClick has been removed as of v201206. Am I able to 
>> get this data via another method?
>>
>> Thanks in advance
>>
>> Neil
>>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: ServiceAccountantManager and Memory issues

2012-07-24 Thread Kevin Winter
Hi Jam,
  In general, issues like this should be filed on the project issue 
tracker. 
 The new java library doesn't 
use a ServiceAccountantManager and should therefore be unaffected.

- Kevin Winter
AdWords API Team

On Tuesday, July 10, 2012 5:04:30 AM UTC-4, Jam wrote:
>
> ???
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 is the v201206 Java client library?

2012-07-24 Thread Kevin Winter
Hi all,
  Both the new and old java libraries have been updated with v201206 
support.

- Kevin Winter
AdWords API Team

On Friday, July 6, 2012 5:27:45 AM UTC-4, Oliver wrote:
>
> I don't believe it's out yet. This was posted 2 days ago:
>
> https://groups.google.com/forum/?fromgroups#!topic/adwords-api/tPvZAs8pVjk
>
>
> Oliver
>
>
> On Friday, July 6, 2012 12:13:06 AM UTC+1, Jim McCabe wrote:
>>
>> I am having trouble finding the v201206 Java client library.
>>
>> Traditionally we have downloaded JARs from Google 
>> Code. 
>>  The latest version is 8.6.1 and it only includes v201109 and v201109_1. 
>>  There is no v201206 in there.
>>
>> However this appears to be the "old" way of doing things, according to 
>> the Migration 
>> Guide. 
>>  The "new" way is to get the JARs from a Maven repository, and the latest 
>> version is 1.5.0 .  Once 
>> again there is only support for v201109 and v201109_1, but no mention of 
>> v201206 inside the JAR.  I even looked in the DFA and DFP JARs, but they 
>> don't have the Adwords API classes.
>>
>> Can someone shed some light on when we can expect v201206 to be supported 
>> in the Java client libraries?
>>
>> This is fairly critical to us since the v13 reseller AccountService API 
>> is going to be phased out on August 
>> 20and
>>  we were hoping to migrate that to v201206 immediately.
>>
>> Jim  
>>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Token Approval

2012-07-24 Thread Kevin Winter
Please direct any questions regarding access to the AdWords API to 
adwordsapi-tok...@google.com.

- Kevin Winter
AdWords API Team

On Thursday, July 5, 2012 10:00:59 AM UTC-4, Logaholic Development wrote:
>
> Yes we are waiting for approval for months!!! 
>
> Since Early March we have been trying to get our API implementation 
> approved.
> We initially got some answers and followed instructions We have completed 
> implementation, setup a test account and environment as per request and 
> have since last May have had no sign!! We are trying to contact adwordsapi 
> team no sign of life what ever we try. This project is now ongoing almost 6 
> month and no end in site when Google fails to answer.
> Would it not be just normal courtesy to answer our mail???
>
> ticket  # 943859748
>
> Please contact me at andre_-_ad_-_logaholic_-_dot_-_com
>
> Thanks
>
> André
>
> On Wednesday, July 4, 2012 4:07:15 PM UTC+2, anwar wrote:
>>
>> Hi,
>>
>> is there anyone else that is waiting for the developer token approval 
>> since months? We have requested access in 2011, and the token is still 
>> "Pending Approval". We have had requests for additional information three 
>> times now, and have sent the information each time. Hang Out times of the 
>> developer are probably not the right place regarding approval questions ...
>>
>> Is there any way to speed up the process? Every help is appreciated
>>
>> Best Regards,
>>
>> Anwar
>>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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-07-24 Thread Kevin Winter
Please direct any questions regarding access to the AdWords API to 
adwordsapi-tok...@google.com.

- Kevin Winter
AdWords API Team

On Thursday, July 5, 2012 4:46:58 AM UTC-4, pim wrote:
>
> I am waiting 11 weeks already. So get in the line!
>
> On Tuesday, April 24, 2012 6:14:18 PM UTC+2, 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? 
>
>

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: Is there any way to link Adwords accounts through the the API?

2012-07-24 Thread Kevin Winter
Hi,
  Unfortunately, this is not currently possible with the AdWords API.

- Kevin Winter
AdWords API Team

On Wednesday, July 4, 2012 9:46:40 AM UTC-4, joanfihu wrote:
>
> I'd like to link adwords accounts in my app and I am wondering whether 
> it's possible or not.

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

2012-07-24 Thread Kevin Winter
Hi David,
  As with any feature in the AdWords API, we'll take use into account if we 
ever have to make a decision to remove a feature.  We intend this feature 
to be ready for production, so you shouldn't fear using it.  You shouldn't 
feel obligated to convert all your generic selectors to AWQL, but feel free 
to try using it the next time you need to create a new query.

- Kevin Winter
AdWords API Team

On Wednesday, July 4, 2012 6:44:02 AM UTC-4, David Kemp wrote:
>
> The recent news about v201206 
> API
>  introduces 
> use to AdWords Query 
> language
> .
>
> Before I rush off an convert services calls to use this, can anyone at 
> Google comment on the strategy for this? Is it experimental? Is it going to 
> replace selectors? 
>
> Like most programmers, I'm always keen to learn a new tool, but I'm a 
> little curious about this as I've not really seen it mentioned anywhere 
> else.
>
> 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: Why does the adwordapi team ignores our mail completely? Token #943859748

2012-07-24 Thread Kevin Winter
Please direct any questions regarding access to the AdWords API to 
adwordsapi-tok...@google.com.

- Kevin Winter
AdWords API Team

On Wednesday, July 4, 2012 5:58:20 AM UTC-4, Andre_AMSNL wrote:
>
> Since Early March we have been trying to get our API implementation 
> approved.
> We initially got some answers and followed instructions We have completed 
> implementation, setup a test account and environment as per request and 
> have since last May I we are trying to contact adwordsapi team no sign of 
> life what ever we try. This project is now ongoing almost 6 month and no 
> end in site when Google fails to answer.
> Would it not be just normal courtesy to answer our mail???
>  
>

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

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


What are the arguments passed in getOrdersByContactName(arg0, arg1, arg2, arg3, arg4, arg5) function in dartapi_13.6.09?

2012-07-24 Thread saravana E
Hi,

I am Saravana and i am using Dartapi_13.6.9 jar file for retrieving the 
data from dart.
I am not able to comprehend the correct arguments for the methods in the 
library.
please help me.  

Regards,
Saravana.

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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: PHP API - TargetingIdeaService - RelatedToUrlSearchParameter - [TargetingIdeaError.INVALID_SEARCH_PARAMETERS @ selector.selector.searchParameters[2].includeSubUrls]

2012-07-24 Thread Alexander Nitschke
Hi Josh,

please look further down to the documentation for "includeSubUrls". This 
one is ignored for "KEYWORD" queries, generally the KEYWORD idea query 
supports only one Url. But I think Kevin's link was misleading as he linked 
to the v201206 doc and your code is using v201109. Still, the documentation 
for this specific field hasn't changed. 

Alexander

Am Montag, 23. Juli 2012 19:57:30 UTC+2 schrieb Josh:
>
> Hi,
>
> thanks for the answer.
>
> Sorry I must be blind but the I don't see such mention in provided link, 
> the documentation states :
>
> - "This element is supported by following 
> RequestTypes:
>  
> IDEAS, STATS. " 
> - "This search parameter can be used in bulk keyword requests through the 
> TargetingIdeaService.getBulkKeywordIdeas(TargetingIdeaSelector)method"
>
> I'm not using the Bulk Method but this parameter was also used to be 
> supported by versions prior to v201109
>
>
>
> Le lundi 23 juillet 2012 16:59:02 UTC+2, Kevin Winter a écrit :
>>
>> Hi,
>>   The documentation indicates that for KEYWORD requests (ideaType), this 
>> field isn't supported: 
>> https://developers.google.com/adwords/api/docs/reference/latest/TargetingIdeaService.RelatedToUrlSearchParameter#includeSubUrls
>>
>> - Kevin Winter
>> AdWords API Team
>>
>> On Friday, June 22, 2012 8:02:25 AM UTC-4, Josh wrote:
>>>
>>> Hi,
>>>
>>> it looks as if the includeSubUrls parameter is not correctly supported 
>>> as I keep getting this error :
>>>
>>> [TargetingIdeaError.INVALID_SEARCH_PARAMETERS @ 
>>> selector.selector.searchParameters[2].includeSubUrls]
>>>
>>> My code is really straightforward :
>>>
>>>   $targetingIdeaService = $user->GetTargetingIdeaService('v201109');
>>>   // Create selector.
>>>   $selector = new TargetingIdeaSelector();
>>>   $selector->requestType = 'IDEAS';
>>>   $selector->ideaType = 'KEYWORD';
>>>   $selector->requestedAttributeTypes =
>>>   array('CRITERION', 'AVERAGE_TARGETED_MONTHLY_SEARCHES', 
>>> 'COMPETITION', 'NGRAM_GROUP');
>>>
>>>   // Set selector paging (required for targeting idea service).
>>>   $paging = new Paging();
>>>   $paging->startIndex = 0;
>>>
>>> $paging->numberResults = 50;
>>>
>>> $search = new RelatedToUrlSearchParameter();
>>> $search->urls = 'www.foo.com';
>>> $search->includeSubUrls = true;
>>>
>>>

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