Re: TrafficEstimatorService Not giving equal monthly volume compared with Keyword Planner Tool volume

2014-08-12 Thread Josh Radcliff (AdWords API Team)
Hi Sugappriya,

The API does not support weekly estimates or date ranges. The difference 
between the UI and the API is most likely due to the following point 
mentioned in the TrafficEstimatorService documentation 

:

Note that the API returns intervals whereas the Traffic Estimator UI 
> displays averages.


Thanks,
Josh, AdWords API Team

On Tuesday, August 12, 2014 1:08:31 AM UTC-4, suga priya wrote:
>
> Yes.I am getting other values like Clicks,Impression and Cost as same as 
> UI, only Avg Position has variation in points.Also through API Is it 
> possible to get weekly estimates?
>
> If so how to set Date Range and date range is not supported by API. Any 
> solution?
>
> Thanks,
> Sugappriya
>
>
> On Monday, 11 August 2014 23:32:33 UTC+5:30, Josh Radcliff (AdWords API 
> Team) wrote:
>
> Hi,
>
> Are you submitting the API request and the UI request at essentially the 
> same time, and using the same account and credentials?
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, August 11, 2014 12:34:16 PM UTC-4, suga priya wrote:
>
> Hi Josh,
>
>  Avg position value is not matching with keyword planner tool. I set 
> language,location and network  parameters as well.For "leasing software" 
>  through api i am getting 3.35 but in keyword planner tool i am getting 
> 3.31.
>
>
> Please help me to fix this issue
>
>
> Thanks,
> Sugappriya
>
> For eg  
> On Monday, 11 August 2014 21:01:20 UTC+5:30, Josh Radcliff (AdWords API 
> Team) wrote:
>
> Hi,
>
> I'm not quite sure what the purpose/question was of your most recent post, 
> but I would recommend reading through our new Estimating Traffic guide 
> 
>  to 
> see if that answers your question.
>
> Thanks,
> Josh, AdWords API Team
>
> On Monday, August 11, 2014 6:39:36 AM UTC-4, suga priya wrote:
>
> Results for the keyword with text 'leasing software' and match type 
> 'BROAD': Estimated average CPC in micros: 588280 Estimated ad position: 
> 3.35 Estimated daily clicks: 0 Estimated daily cost in micros: 204688
>
>
> On Monday, 11 August 2014 16:08:26 UTC+5:30, suga priya wrote:
>
> Hi Josh,
>
> I am trying to get traffic estimate for keyword.i am using 
> TrafficEstimatorService 
> 
>   
> for that.But values are not matching with keyword planner tool.Please find 
> the codes and attachment.
>
>  /**
>  * This example gets traffic estimates for new keywords.
>  *
>  * Tags: TrafficEstimatorService.get
>  * Restriction: adwords-only
>  *
>  * Copyright 2014, Google Inc. All Rights Reserved.
>  *
>  * Licensed under the Apache License, Version 2.0 (the "License");
>  * you may not use this file except in compliance with the License.
>  * You may obtain a copy of the License at
>  *
>  * http://www.apache.org/licenses/LICENSE-2.0
>  *
>  * Unless required by applicable law or agreed to in writing, software
>  * distributed under the License is distributed on an "AS IS" BASIS,
>  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
>  * See the License for the specific language governing permissions and
>  * limitations under the License.
>  *
>  * @packageGoogleApiAdsAdWords
>  * @subpackage v201406
>  * @category   WebServices
>  * @copyright  2014, Google Inc. All Rights Reserved.
>  * @licensehttp://www.apache.org/licenses/LICENSE-2.0 Apache License,
>  * Version 2.0
>  * @author Eric Koleda
>  */
>
> // Include the initialization file
> require_once dirname(dirname(__FILE__)) . '/init.php';
>
> /**
>  * Runs the example.
>  * @param AdWordsUser $user the user to run the example with
>  */
> function EstimateKeywordTrafficExample(AdWordsUser $user) {
>
> $trafficEstimatorService =
> $user->GetService('TrafficEstimatorService', ADWORDS_VERSION);
>
>
> $keywords = array();
> $keywords[] = new Keyword('leasing software', 'BROAD');
>
>   $negativeKeywords = array();
>
>   // Create a keyword estimate request for each keyword.
>   $keywordEstimateRequests = array();
>   foreach ($keywords as $keyword) {
> $keywordEstimateRequest = new KeywordEstimateRequest();
> $keywordEstimateRequest->keyword = $keyword;
> $keywordEstimateRequests[] = $keywordEstimateRequest;
>   }
>
>   // Create a keyword estimate request for each negative keyword.
>   foreach ($negativeKeywords as $negativeKeyword) {
> $keywordEstimateRequest = new KeywordEstimateRequest();
> $keywordEstimateRequest->keyword = $negativeKeyword;
> $keywordEstimateRequest->isNegative = TRUE;
> $keywordEstimateRequests[] = $keywordEstimateRequest;
>   }
>
>   // Create ad group estimate requests.
>   $adGroupEstimateRequest = new AdGroupEstimateRequest();
>   $adGroupEstimateRequest->keywordEstimateRequests = 
> $keywordEstimateRequests;
>   $adGroupEstimateRequest->maxCpc

Logging OAuth Request/Respones (Java Client Library)

2014-08-12 Thread Stacie Waleyko
Hi,

I am using the Java client library to get new OAuth access tokens as 
needed. I understand that HTTP POST requests to get new OAuth tokens 
contain sensitive information but was wondering if there was any way to 
view the requests/responses. There are a few reasons why I'd like to do 
this, for one I'd like to verify that the new OAuth scope is being used. 
Also, last month there was a hiccup with OAuth (see Failed to refresh 
access token. { "error" : "invalid_client" } on perfectly good client 
) 
and the logs can help us figure out if future issues are on our side or 
not. 

I followed the instructions on the Java client library's Github page 
 to enable logging. I am 
using log4j as the logging framework and used the sample log4j.properties 
to set up the soapXmlLogger and requestInfoLogger. Other calls to the API 
are logged but my calls to get new OAuth access tokens are not. It this by 
design or is there something wrong with my log4j configuration? Is there 
another logger that handles OAuth token requests?

Thanks,

Stacie

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Report segmentation by week - changing definition of "week"

2014-08-12 Thread Adrian Pell
Oh ... and I'm using the .NET API with the v201406 version in case that 
matters ...


On Tuesday, August 12, 2014 3:27:29 PM UTC-7, Adrian Pell wrote:
>
> I've recently started needing weekly segmentation of some reports that I 
> fetch through the API.  All pretty straightforward to do ... except I'm not 
> totally clear what defines a week, or whether it's possible to change that 
> definition.
>
> In some other (much) earlier topics here, it seems that the definition is 
> (was?) Sun-Sat - but currently when I request the report, the date in the 
> "Week" column is a Monday - and the data seems to line up with that 
> indicating the first day of the week (so a Mon-Sun week).
>
> So ...
>
>- What is the default definition for a week as segmented in a report?
>- Is it possible to change that (I guess I'm only really interested in 
>Sun-Sat or Mon-Sun)?
>
> Thanks
>
> Adrian
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Report segmentation by week - changing definition of "week"

2014-08-12 Thread Adrian Pell
I've recently started needing weekly segmentation of some reports that I 
fetch through the API.  All pretty straightforward to do ... except I'm not 
totally clear what defines a week, or whether it's possible to change that 
definition.

In some other (much) earlier topics here, it seems that the definition is 
(was?) Sun-Sat - but currently when I request the report, the date in the 
"Week" column is a Monday - and the data seems to line up with that 
indicating the first day of the week (so a Mon-Sun week).

So ...

   - What is the default definition for a week as segmented in a report?
   - Is it possible to change that (I guess I'm only really interested in 
   Sun-Sat or Mon-Sun)?

Thanks

Adrian


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Clients via API and MDS

2014-08-12 Thread GDZ
Thank you

On Tuesday, August 12, 2014 4:57:01 PM UTC-4, Ray Tsang (AdWords API Team) 
wrote:
>
> GDZ,
>
> Please contact the sales rep and if they still have questions, they can 
> contact AdWords API support on your behalf.
>
> Cheers,
>
> Ray
>
> On Tuesday, August 12, 2014 4:04:50 PM UTC-4, GDZ wrote:
>>
>> Sure do.
>>
>>
>>
>> On Tuesday, August 12, 2014 2:09:51 PM UTC-4, Ray Tsang (AdWords API 
>> Team) wrote:
>>>
>>> GDZ,
>>>
>>> Do you have a Google representative that you work with?
>>>
>>> Thanks,
>>>
>>> Ray
>>>
>>> On Tuesday, August 12, 2014 9:44:34 AM UTC-4, GDZ wrote:

 Hello!

 We're going to create multiple client accounts under our own MCC acct 
 via API. Clients will not have access to their accounts and we're going to 
 pay for all the clicks charging clients later. 
 Question is how should we do that in terms of payments to Google. MDS? 
 Will we be able to add clients via API under MCC/MDS umbrella?

 Thank you!

 GDZ 

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Clients via API and MDS

2014-08-12 Thread Ray Tsang (AdWords API Team)
GDZ,

Please contact the sales rep and if they still have questions, they can 
contact AdWords API support on your behalf.

Cheers,

Ray

On Tuesday, August 12, 2014 4:04:50 PM UTC-4, GDZ wrote:
>
> Sure do.
>
>
>
> On Tuesday, August 12, 2014 2:09:51 PM UTC-4, Ray Tsang (AdWords API Team) 
> wrote:
>>
>> GDZ,
>>
>> Do you have a Google representative that you work with?
>>
>> Thanks,
>>
>> Ray
>>
>> On Tuesday, August 12, 2014 9:44:34 AM UTC-4, GDZ wrote:
>>>
>>> Hello!
>>>
>>> We're going to create multiple client accounts under our own MCC acct 
>>> via API. Clients will not have access to their accounts and we're going to 
>>> pay for all the clicks charging clients later. 
>>> Question is how should we do that in terms of payments to Google. MDS? 
>>> Will we be able to add clients via API under MCC/MDS umbrella?
>>>
>>> Thank you!
>>>
>>> GDZ 
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Clients via API and MDS

2014-08-12 Thread GDZ
Sure do.



On Tuesday, August 12, 2014 2:09:51 PM UTC-4, Ray Tsang (AdWords API Team) 
wrote:
>
> GDZ,
>
> Do you have a Google representative that you work with?
>
> Thanks,
>
> Ray
>
> On Tuesday, August 12, 2014 9:44:34 AM UTC-4, GDZ wrote:
>>
>> Hello!
>>
>> We're going to create multiple client accounts under our own MCC acct via 
>> API. Clients will not have access to their accounts and we're going to pay 
>> for all the clicks charging clients later. 
>> Question is how should we do that in terms of payments to Google. MDS? 
>> Will we be able to add clients via API under MCC/MDS umbrella?
>>
>> Thank you!
>>
>> GDZ 
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Get Customer ID

2014-08-12 Thread Ray Tsang (AdWords API Team)
Phillip,

You can use some other client libraries other than ruby, for example, to 
validate the issue.  I'd really need additional validation on this when 
using the client library, as the issue may be in the OAuth 2.0 handling 
logic that you currently have, vs. an account level issue.

I also noticed that you are using the webflow.  It would be great to 
validate the issue w/ a simplified flow as well.

Thanks,

Ray

On Tuesday, August 12, 2014 3:15:56 PM UTC-4, Philipp Comans wrote:
>
> I can not use the client library unfortunately since it is incompatible 
> with some existing gems in our project.
> The URL I use is:
>
> https://accounts.google.com/o/oauth2/auth?access_type=offline&approval_prompt=force&client_id=.apps.googleusercontent.com&redirect_uri=http%3A%2F%2FX&response_type=code&scope=https%3A%2F%2Fadwords.google.com%2Fapi%2Fadwords%2F
> On Tuesday, August 12, 2014 11:16:48 AM UTC-7, Ray Tsang (AdWords API 
> Team) wrote:
>>
>> Phillip,
>>
>> Did you use the example included in the client library to generate the 
>> token?  What version of the client library are you using?
>>
>> Thanks,
>>
>> Ray
>>
>> On Tuesday, August 12, 2014 12:45:32 PM UTC-4, Philipp Comans wrote:
>>>
>>> Hi Ray,
>>>
>>> Thanks for your reply. My authorization token has the scope 
>>> https://adwords.google.com/api/adwords/.
>>> I am not specifying a scope when requesting the access token. Does that 
>>> sound right to you?
>>>
>>>
>>> On Monday, August 11, 2014 8:31:15 AM UTC-7, Ray Tsang (AdWords API 
>>> Team) wrote:

 Phillip,

 Please make sure that the access token has the appropriate scope, and 
 that it's for the user that has access to the MCC or the AW account.
 It's recommended that you perform such a test by using the client 
 library 
 .

 Thanks,

 Ray

 On Sunday, August 10, 2014 10:13:47 PM UTC-4, Philipp Comans wrote:
>
> Hey, I am trying to get the Customer ID of an AdWords Account that I 
> just authenticated with using OAuth2.
> For now, I am using a Chrome extension (
> https://chrome.google.com/webstore/detail/wizdler/oebpmncolmhiapingjaagmapififiakb?hl=en)
>  
> to make a SOAP request to CustomerService (
> https://developers.google.com/adwords/api/docs/reference/v201406/CustomerService
> )
>
> The URL is:
> https://adwords.google.com/api/adwords/mcm/v201406/CustomerService
>
> My Request looks like this:
> http://schemas.xmlsoap.org/soap/envelope/";>
>   
> https://adwords.google.com/api/adwords/mcm/v201406";>
>   https://adwords.google.com/api/adwords/cm/v201406
> ">X
>   https://adwords.google.com/api/adwords/cm/v201406";>X
>   https://adwords.google.com/api/adwords/cm/v201406
> ">false
>   https://adwords.google.com/api/adwords/cm/v201406
> ">false
> 
>   
>   
> https://adwords.google.com/api/adwords/mcm/v201406"/>
>   
> 
>
> My header looks like this:
> Content-Type: text/xml; charset="utf-8"
> Authorization: Bearer X
>
> The response I get is:
> http://schemas.xmlsoap.org/soap/envelope/";>
> 
> https://adwords.google.com/api/adwords/cm/v201406"; xmlns="
> https://adwords.google.com/api/adwords/mcm/v201406";>
> X
> CustomerService
> get
> 0
> 375
> 
> 
> 
> 
> soap:Server
> [AuthorizationError.SERVICE_ACCESS_DENIED @ 
> ]
> 
> https://adwords.google.com/api/adwords/mcm/v201406"; xmlns:ns2="
> https://adwords.google.com/api/adwords/cm/v201406";>
> 
> [AuthorizationError.SERVICE_ACCESS_DENIED @ ]
> 
> ApiException
> http://www.w3.org/2001/XMLSchema-instance"; 
> xsi:type="ns2:AuthorizationError">
> 
> 
> 
> AuthorizationError.SERVICE_ACCESS_DENIED
> 
> AuthorizationError
> SERVICE_ACCESS_DENIED
> 
> 
> 
> 
> 
> 
>
> What am I doing wrong?
>


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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 opti

Re: Get Customer ID

2014-08-12 Thread Philipp Comans
I can not use the client library unfortunately since it is incompatible 
with some existing gems in our project.
The URL I use is:
https://accounts.google.com/o/oauth2/auth?access_type=offline&approval_prompt=force&client_id=.apps.googleusercontent.com&redirect_uri=http%3A%2F%2FX&response_type=code&scope=https%3A%2F%2Fadwords.google.com%2Fapi%2Fadwords%2F
On Tuesday, August 12, 2014 11:16:48 AM UTC-7, Ray Tsang (AdWords API Team) 
wrote:
>
> Phillip,
>
> Did you use the example included in the client library to generate the 
> token?  What version of the client library are you using?
>
> Thanks,
>
> Ray
>
> On Tuesday, August 12, 2014 12:45:32 PM UTC-4, Philipp Comans wrote:
>>
>> Hi Ray,
>>
>> Thanks for your reply. My authorization token has the scope 
>> https://adwords.google.com/api/adwords/.
>> I am not specifying a scope when requesting the access token. Does that 
>> sound right to you?
>>
>>
>> On Monday, August 11, 2014 8:31:15 AM UTC-7, Ray Tsang (AdWords API Team) 
>> wrote:
>>>
>>> Phillip,
>>>
>>> Please make sure that the access token has the appropriate scope, and 
>>> that it's for the user that has access to the MCC or the AW account.
>>> It's recommended that you perform such a test by using the client 
>>> library 
>>> .
>>>
>>> Thanks,
>>>
>>> Ray
>>>
>>> On Sunday, August 10, 2014 10:13:47 PM UTC-4, Philipp Comans wrote:

 Hey, I am trying to get the Customer ID of an AdWords Account that I 
 just authenticated with using OAuth2.
 For now, I am using a Chrome extension (
 https://chrome.google.com/webstore/detail/wizdler/oebpmncolmhiapingjaagmapififiakb?hl=en)
  
 to make a SOAP request to CustomerService (
 https://developers.google.com/adwords/api/docs/reference/v201406/CustomerService
 )

 The URL is:
 https://adwords.google.com/api/adwords/mcm/v201406/CustomerService

 My Request looks like this:
 http://schemas.xmlsoap.org/soap/envelope/";>
   
 https://adwords.google.com/api/adwords/mcm/v201406";>
   https://adwords.google.com/api/adwords/cm/v201406
 ">X
   https://adwords.google.com/api/adwords/cm/v201406";>X
   https://adwords.google.com/api/adwords/cm/v201406";>false
   https://adwords.google.com/api/adwords/cm/v201406
 ">false
 
   
   
 https://adwords.google.com/api/adwords/mcm/v201406"/>
   
 

 My header looks like this:
 Content-Type: text/xml; charset="utf-8"
 Authorization: Bearer X

 The response I get is:
 http://schemas.xmlsoap.org/soap/envelope/";>
 
 https://adwords.google.com/api/adwords/cm/v201406"; xmlns="
 https://adwords.google.com/api/adwords/mcm/v201406";>
 X
 CustomerService
 get
 0
 375
 
 
 
 
 soap:Server
 [AuthorizationError.SERVICE_ACCESS_DENIED @ 
 ]
 
 https://adwords.google.com/api/adwords/mcm/v201406"; xmlns:ns2="
 https://adwords.google.com/api/adwords/cm/v201406";>
 
 [AuthorizationError.SERVICE_ACCESS_DENIED @ ]
 
 ApiException
 http://www.w3.org/2001/XMLSchema-instance"; 
 xsi:type="ns2:AuthorizationError">
 
 
 
 AuthorizationError.SERVICE_ACCESS_DENIED
 
 AuthorizationError
 SERVICE_ACCESS_DENIED
 
 
 
 
 
 

 What am I doing wrong?

>>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: some KeywordEstimate return null - .NET lib

2014-08-12 Thread Ray Tsang (AdWords API Team)
Itay,

Thanks for the logs.  I'll look into that.

Cheers,

Ray

On Monday, August 11, 2014 10:49:53 AM UTC-4, Ray Tsang (AdWords API Team) 
wrote:
>
> Itay,
>
> Please send a specific example SOAP XML request/response in private and 
> point out the exact line that has the issue.
>
> Thanks,
>
> Ray
>
> On Sunday, August 10, 2014 6:23:01 AM UTC-4, Itay Dalmedigos wrote:
>>
>> when i request traffic estimation for 1800 different keywords, some of 
>> them returns with max.averageCpc=null and min.averageCpc=null
>> but when i take one of those keywords and make a traffic extimation 
>> request just for it (with all other parameters the same), a get a valid 
>> result.
>>
>> am i doing something wrong?
>>
>> Thanks!
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Get Customer ID

2014-08-12 Thread Ray Tsang (AdWords API Team)
Phillip,

Did you use the example included in the client library to generate the 
token?  What version of the client library are you using?

Thanks,

Ray

On Tuesday, August 12, 2014 12:45:32 PM UTC-4, Philipp Comans wrote:
>
> Hi Ray,
>
> Thanks for your reply. My authorization token has the scope 
> https://adwords.google.com/api/adwords/.
> I am not specifying a scope when requesting the access token. Does that 
> sound right to you?
>
>
> On Monday, August 11, 2014 8:31:15 AM UTC-7, Ray Tsang (AdWords API Team) 
> wrote:
>>
>> Phillip,
>>
>> Please make sure that the access token has the appropriate scope, and 
>> that it's for the user that has access to the MCC or the AW account.
>> It's recommended that you perform such a test by using the client library 
>> .
>>
>> Thanks,
>>
>> Ray
>>
>> On Sunday, August 10, 2014 10:13:47 PM UTC-4, Philipp Comans wrote:
>>>
>>> Hey, I am trying to get the Customer ID of an AdWords Account that I 
>>> just authenticated with using OAuth2.
>>> For now, I am using a Chrome extension (
>>> https://chrome.google.com/webstore/detail/wizdler/oebpmncolmhiapingjaagmapififiakb?hl=en)
>>>  
>>> to make a SOAP request to CustomerService (
>>> https://developers.google.com/adwords/api/docs/reference/v201406/CustomerService
>>> )
>>>
>>> The URL is:
>>> https://adwords.google.com/api/adwords/mcm/v201406/CustomerService
>>>
>>> My Request looks like this:
>>> http://schemas.xmlsoap.org/soap/envelope/";>
>>>   
>>> https://adwords.google.com/api/adwords/mcm/v201406";>
>>>   https://adwords.google.com/api/adwords/cm/v201406
>>> ">X
>>>   https://adwords.google.com/api/adwords/cm/v201406";>X
>>>   https://adwords.google.com/api/adwords/cm/v201406";>false
>>>   https://adwords.google.com/api/adwords/cm/v201406
>>> ">false
>>> 
>>>   
>>>   
>>> https://adwords.google.com/api/adwords/mcm/v201406"/>
>>>   
>>> 
>>>
>>> My header looks like this:
>>> Content-Type: text/xml; charset="utf-8"
>>> Authorization: Bearer X
>>>
>>> The response I get is:
>>> http://schemas.xmlsoap.org/soap/envelope/";>
>>> 
>>> https://adwords.google.com/api/adwords/cm/v201406"; xmlns="
>>> https://adwords.google.com/api/adwords/mcm/v201406";>
>>> X
>>> CustomerService
>>> get
>>> 0
>>> 375
>>> 
>>> 
>>> 
>>> 
>>> soap:Server
>>> [AuthorizationError.SERVICE_ACCESS_DENIED @ 
>>> ]
>>> 
>>> https://adwords.google.com/api/adwords/mcm/v201406"; xmlns:ns2="
>>> https://adwords.google.com/api/adwords/cm/v201406";>
>>> 
>>> [AuthorizationError.SERVICE_ACCESS_DENIED @ ]
>>> 
>>> ApiException
>>> http://www.w3.org/2001/XMLSchema-instance"; 
>>> xsi:type="ns2:AuthorizationError">
>>> 
>>> 
>>> 
>>> AuthorizationError.SERVICE_ACCESS_DENIED
>>> 
>>> AuthorizationError
>>> SERVICE_ACCESS_DENIED
>>> 
>>> 
>>> 
>>> 
>>> 
>>> 
>>>
>>> What am I doing wrong?
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Can't seem to update CampaignAdExtension

2014-08-12 Thread Ray Tsang (AdWords API Team)
Assaf,

Please send me the full SOAP request/response in private.

Thanks,

Ray

On Tuesday, August 12, 2014 9:31:00 AM UTC-4, Assaf Magen wrote:
>
> Hello,
>
> I'm trying to update phone number on existing CampaignAdExtension of type 
> LocationExtension using the SET operator - update fails with following 
> error:
>
> OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]
>
> Couldn't find in Adwords API  docs any restrictions regarding 
> CampaignAdExtensionService mutate and the SET operator.
>
> I'm using v201406
>
> thanks for your help...
>
> here's my code (C#)
>
>
> var setAdExtensionResult = _campaignAdExtService.mutate(new[]
>{
>new CampaignAdExtensionOperation
>{
>operand = locExtension,
>@operator = Operator.SET
>}
>});
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Query regarding the credit card fax copy

2014-08-12 Thread Ray Tsang (AdWords API Team)
Suvodhoy,

For general billing preferences questions, please refer to the general AdWords 
community  and/or AdWords help center 
 for contact 
information.

Thanks,

Ray

On Tuesday, August 12, 2014 11:01:50 AM UTC-4, Suvodhoy Sinha wrote:
>
> I wanted to access Google Adwords Api for which I need to get the 
> developer token. Following the instructions, I tried setting up my MCC 
> account's billing preferences when I was prompted to send in a fax of my 
> credit card. I selected India as country while setting it up. Kindly let me 
> know is there is any other means of sending this sensitive information. If 
> not, is this safe? Do I have some kind of leverage that no illegal action 
> will be taken against it?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Clients via API and MDS

2014-08-12 Thread Ray Tsang (AdWords API Team)
GDZ,

Do you have a Google representative that you work with?

Thanks,

Ray

On Tuesday, August 12, 2014 9:44:34 AM UTC-4, GDZ wrote:
>
> Hello!
>
> We're going to create multiple client accounts under our own MCC acct via 
> API. Clients will not have access to their accounts and we're going to pay 
> for all the clicks charging clients later. 
> Question is how should we do that in terms of payments to Google. MDS? 
> Will we be able to add clients via API under MCC/MDS umbrella?
>
> Thank you!
>
> GDZ 
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Waiting 3 months already for approval API key...

2014-08-12 Thread Ray Tsang (AdWords API Team)
Hi,

Please check to see if there was a email being sent to the e-mail address 
associated w/ the developer contact information.  It would've had a link to 
submit a follow up form.  Please also check for spam and/or other filtered 
folders.

Thanks,

Ray

On Tuesday, August 12, 2014 5:17:28 AM UTC-4, in...@hjwebdevelopment.nl 
wrote:
>
> I requested 08 may 2014 a free api key but the status is still "awaiting 
> for approval". How long do I have to wait?
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: .Net API version - Have created test account and also have production account but get incomplete sign up error

2014-08-12 Thread Ray Tsang (AdWords API Team)
Hi,

Please carefully follow all steps in the Incomplete Signup error 
troubleshooting guide 

.

Thanks,

Ray

On Monday, August 11, 2014 7:04:08 PM UTC-4, fountain...@gmail.com wrote:
>
> Hello,
>
> I have been struggling with this for some time so your help is much 
> appreciated in advance.
> I am also using the C#.Net API wrapper which I have been able to 
> understand and is now up and running. Although I am getting the error: 
> Failed to get campaigns. Exception says "An API exception has occurred. 
> See ApiException and InnerException fields for more 
> details.""[QuotaCheckError.INCOMPLETE_SIGNUP @ ; trigger:'']" 
>
> Here are the steps that I have followed.
>
>1. I have created a test account t...@testdomain.com
>2. I have created a MCC account for both Production (#MCC1) and Test 
>account (#MCC2)
>3. I have created a production developer token against #MCC1 (pending 
>approval, and does not matter as mostly focusing on testing at the moment)
>4. I have added the production developer token to the web.config
>5. I have added the Client Customer ID, The oAuth2ClientID and 
>oAuth2ClientSecret from the test account to the web.config
>
> I can do the authentication just fine and I successful get the 
> authorisation login. After that and once I get to execute I get the 
> Incomplete_Signup error.
>
> Also, when using the handy oAuthTokenGenerator with the clientID and 
> secret from the test account, I get an exception:
>
> System.Net.HttpListenerException was unhandled
>   HResult=-2147467259
>   Message=Access is denied
>   Source=System
>   ErrorCode=5
>   NativeErrorCode=5
>   
> I am puzzled. Shouldn't this be working? I followed the documentation to 
> the letter and I guess it should be working. Let me know if you need any 
> IDs for investigation.
>
> Kind regards.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Get Customer ID

2014-08-12 Thread Philipp Comans
Hi Ray,

Thanks for your reply. My authorization token has the 
scope https://adwords.google.com/api/adwords/.
I am not specifying a scope when requesting the access token. Does that 
sound right to you?


On Monday, August 11, 2014 8:31:15 AM UTC-7, Ray Tsang (AdWords API Team) 
wrote:
>
> Phillip,
>
> Please make sure that the access token has the appropriate scope, and that 
> it's for the user that has access to the MCC or the AW account.
> It's recommended that you perform such a test by using the client library 
> .
>
> Thanks,
>
> Ray
>
> On Sunday, August 10, 2014 10:13:47 PM UTC-4, Philipp Comans wrote:
>>
>> Hey, I am trying to get the Customer ID of an AdWords Account that I just 
>> authenticated with using OAuth2.
>> For now, I am using a Chrome extension (
>> https://chrome.google.com/webstore/detail/wizdler/oebpmncolmhiapingjaagmapififiakb?hl=en)
>>  
>> to make a SOAP request to CustomerService (
>> https://developers.google.com/adwords/api/docs/reference/v201406/CustomerService
>> )
>>
>> The URL is:
>> https://adwords.google.com/api/adwords/mcm/v201406/CustomerService
>>
>> My Request looks like this:
>> http://schemas.xmlsoap.org/soap/envelope/";>
>>   
>> https://adwords.google.com/api/adwords/mcm/v201406";>
>>   https://adwords.google.com/api/adwords/cm/v201406";>X
>>   https://adwords.google.com/api/adwords/cm/v201406
>> ">X
>>   https://adwords.google.com/api/adwords/cm/v201406";>false
>>   https://adwords.google.com/api/adwords/cm/v201406";>false
>> 
>>   
>>   
>> https://adwords.google.com/api/adwords/mcm/v201406"/>
>>   
>> 
>>
>> My header looks like this:
>> Content-Type: text/xml; charset="utf-8"
>> Authorization: Bearer X
>>
>> The response I get is:
>> http://schemas.xmlsoap.org/soap/envelope/";>
>> 
>> https://adwords.google.com/api/adwords/cm/v201406"; xmlns="
>> https://adwords.google.com/api/adwords/mcm/v201406";>
>> X
>> CustomerService
>> get
>> 0
>> 375
>> 
>> 
>> 
>> 
>> soap:Server
>> [AuthorizationError.SERVICE_ACCESS_DENIED @ 
>> ]
>> 
>> https://adwords.google.com/api/adwords/mcm/v201406"; xmlns:ns2="
>> https://adwords.google.com/api/adwords/cm/v201406";>
>> 
>> [AuthorizationError.SERVICE_ACCESS_DENIED @ ]
>> 
>> ApiException
>> http://www.w3.org/2001/XMLSchema-instance"; 
>> xsi:type="ns2:AuthorizationError">
>> 
>> 
>> 
>> AuthorizationError.SERVICE_ACCESS_DENIED
>> 
>> AuthorizationError
>> SERVICE_ACCESS_DENIED
>> 
>> 
>> 
>> 
>> 
>> 
>>
>> What am I doing wrong?
>>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: About GetKeywordIdeas help?

2014-08-12 Thread Ray Tsang (AdWords API Team)
Tim,

That's not feasible as the result is tied to the queries as a whole.

Thanks,

Ray


On Tuesday, August 12, 2014 12:08:54 AM UTC-4, Tim wrote:
>
> Hi Ray,
>
> Thanks for your answer.
> About the second question...
>
>
> Example:
>
> $user = new AdWordsUser();
>
> $user->LogAll();
>
> $targetingIdeaService = $user->GetService('TargetingIdeaService', 
> 'v201402');
>
> $keyword = array('digital', 'marketing');
>
> $selector = new TargetingIdeaSelector();
> $selector->requestType = 'IDEAS';
> $selector->ideaType = 'KEYWORD';
> $selector->requestedAttributeTypes = array('KEYWORD_TEXT', 
> 'SEARCH_VOLUME', 'CATEGORY_PRODUCTS_AND_SERVICES');
>
> $languageParameter = new LanguageSearchParameter();
> $language = new Language();
> $language->id = 1000;
> $languageParameter->languages = array($language);
>
> $relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
> $relatedToQuerySearchParameter->queries = $keyword;
> $selector->searchParameters[] = $relatedToQuerySearchParameter;
> $selector->searchParameters[] = $languageParameter;
>
> $selector->paging = new Paging(0, 
> AdWordsConstants::RECOMMENDED_PAGE_SIZE);
>
> do {
> $page = $targetingIdeaService->get($selector);
>
> if (isset($page->entries)) {
> foreach ($page->entries as $targetingIdea) {
> $data = MapUtils::GetMap($targetingIdea->data);
> $keyword = $data['KEYWORD_TEXT']->value;
> $search_volume = isset($data['SEARCH_VOLUME']->value) ? 
> $data['SEARCH_VOLUME']->value : 0;
>
> printf("KEYWORD_TEXT = '%s'  SEARCH_VOLUME = '%s' 
> ", $keyword, $search_volume);
> }
> } else {
> print "No keywords ideas were found.\n";
> }
>
> $selector->paging->startIndex += 
> AdWordsConstants::RECOMMENDED_PAGE_SIZE;
> } while ($page->totalNumEntries > $selector->paging->startIndex);
>
>
>
> Result:
>
> KEYWORD_TEXT = 'digital marketing' 
> SEARCH_VOLUME = '74000'
> ...
> KEYWORD_TEXT = 'market research methods' 
> SEARCH_VOLUME = '1600'
> KEYWORD_TEXT = 'small business' 
> SEARCH_VOLUME = '74000'
> KEYWORD_TEXT = 'digital asset management' 
> SEARCH_VOLUME = '8100'
> KEYWORD_TEXT = 'advertise online' 
> SEARCH_VOLUME = '1000'
> ...
>
>
>
> How do I know each the KEYWORD_TEXT is belong to 'digital' or 'marketing'?
>
>
>
> Thanks,
>
> Tim
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: googlebot_keyword in Reports

2014-08-12 Thread Ray Tsang (AdWords API Team)
That's great.  Please do follow up w/ the account rep for general AdWords 
issue.

Cheers,

Ray

On Monday, August 11, 2014 3:37:34 PM UTC-4, Mike-Indiana wrote:
>
> Hi Ray, after more investigation this search adgroup triggered an 
> automatic placement, and ended up returning it in the automatic placements 
> performance report. This is a very closely related URL that shown the ad, 
> so I am pretty sure it's legit. However it does not show up in Adwords, 
> even after changing the campaign type to Search Network with Display 
> Select. Please ignore the info regarding googlebot_keyword. This was an 
> empty container in my database that was overwritten with the placement info.
>
> I suppose that this is an issue I can ask my account rep, why this random 
> placement is not viewable.
>
> Many thanks!
>
> On Monday, August 11, 2014 11:36:12 AM UTC-4, Ray Tsang (AdWords API Team) 
> wrote:
>>
>> Mike,
>>
>> Could I trouble you to send me a sample request/response in private for 
>> such case?
>>
>> Thanks!
>>
>> Ray
>>
>> On Monday, August 11, 2014 4:19:17 AM UTC-4, Mike-Indiana wrote:
>>>
>>> I am noticing that "googlebot_keyword" is showing with a cost value from 
>>> the KEYWORDS_PERFORMANCE_REPORT. It has been in the reports before, but the 
>>> cost was always $0. $1.62 was there in this case. Furthermore, this is a 
>>> search network only campaign, and it is being returned as display / 
>>> placement.
>>>
>>> However after subtracting this amount from the report, the total for an 
>>> adgroup in this case is correct, as the cost value for googlebot_keyword 
>>> seems bogus.
>>>
>>> There are simple ways to ignore this in processing, however I wanted to 
>>> point it out to the team.
>>>
>>> Thanks.
>>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Why Is The Search Function So Awful?

2014-08-12 Thread Ray Tsang (AdWords API Team)
Jeremy,

I will pass this along to the respective teams.

Thanks for the feedback!

Ray

On Monday, August 11, 2014 9:45:40 AM UTC-4, Jeremy Chatfield wrote:
>
>
> Go to developers.google.com. Navigate until you're in the AdWords API 
> section. Search for, ohh, "Impressions". Click on the results. Chances are 
> that you be taken to a page that is not in your interface language. You'll 
> be shown English documents (because, hey, it's Google, and translation just 
> isn't a thing, even in 2014). But you may be given "Haku" as your search. 
> Yes, you've been switched to Finnish. I've had language codes I don't even 
> recognise, and I worked in i18n, over a decade ago.
>
> What have you done to search, that the worlds' largest international 
> public search engine returns results in random languages?
>
> I'm not even going into why the search results are based on the navigation 
> elements of the page rather than the actual content. The number of search 
> results you have to ignore when you search for "search query" is genuinely 
> impressive. It's like search from 1995.
>
> The API documentation is hard enough, without having to navigate the site 
> in weird languages, remembering to edit "hl=jp_JA" back to "en", or 
> wondering where any real resource is that deals with "search query" (8 of 
> the first 10 are not relevant, arguably 9, though the key result that 
> should be there, is present; one of the results is in German, one in 
> Portuguese, one in Finnish, one is a flat file presentation suitable for 
> printing, of a real HTML page, FFS). Half the time the results show v201402 
> or even earlier versions, over 201406, etc. 
>
> I know this is a bit of a rant, but, really, Google is *the* search 
> engine, and the developer resource should have a good representation of 
> search, shouldn't it?
>
> I know that technical documentation translation is not easy. Can I point 
> out, though I was head of R&D for a tiny site (<100k users) back in the 
> 2000's, when we did forward and back translation of all pages and 
> navigation, and error corrections, in less than 3 days, in 13 languages, 
> including some right-to-left languages. I'm not the world's best coder or 
> manager, and my little team could get this done. It can not be beyond the 
> wit of Google to MAKE THE SEARCH FUNCTION USABLE. Start by returning a sort 
> order that reflects the user interface language choice. Then tell your 
> custom search engine to reduce the priority on older versions and increase 
> the priority on more recent versions of the API. Improve the page content - 
> with a Google Search Appliance/Custom Engine you can tell it where the 
> content is (fix the page templates!), and stop promoting results because 
> navigation menus mention the words. It really shouldn't be very hard.
>
> It is very frustrating to use a search engine developers' resource, that 
> implements search so badly.
>
> Rant over. Thank you for your attention.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Can't seem to update CampaignAdExtension

2014-08-12 Thread Assaf Magen
Hello,

I'm trying to update phone number on existing CampaignAdExtension of type 
LocationExtension using the SET operator - update fails with following 
error:

OperatorError.OPERATOR_NOT_SUPPORTED @ operations[0]

Couldn't find in Adwords API  docs any restrictions regarding 
CampaignAdExtensionService mutate and the SET operator.

I'm using v201406

thanks for your help...

here's my code (C#)


var setAdExtensionResult = _campaignAdExtService.mutate(new[]
   {
   new CampaignAdExtensionOperation
   {
   operand = locExtension,
   @operator = Operator.SET
   }
   });

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Query regarding the credit card fax copy

2014-08-12 Thread Suvodhoy Sinha
I wanted to access Google Adwords Api for which I need to get the developer 
token. Following the instructions, I tried setting up my MCC account's 
billing preferences when I was prompted to send in a fax of my credit card. 
I selected India as country while setting it up. Kindly let me know is 
there is any other means of sending this sensitive information. If not, is 
this safe? Do I have some kind of leverage that no illegal action will be 
taken against it?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: RelativeCTR not available in Account Performance reports?

2014-08-12 Thread Zweitze
It's been well over a year. Any updates?

Thanks!



On Sunday, March 17, 2013 10:59:19 PM UTC+1, Paul Matthews (AdWords API 
Team) wrote:
>
> Hi Zweitze,
>
> I can confirm that it does not exist in that report 
> . 
> I'm looking into the for working out the RelativeCTR for a given account 
> and will get back to you as soon as I have more information.
>
> Regards,
>
> - Paul, AdWords API Team.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Clients via API and MDS

2014-08-12 Thread GDZ
Hello!

We're going to create multiple client accounts under our own MCC acct via 
API. Clients will not have access to their accounts and we're going to pay 
for all the clicks charging clients later. 
Question is how should we do that in terms of payments to Google. MDS? Will 
we be able to add clients via API under MCC/MDS umbrella?

Thank you!

GDZ 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: QuotaCheckError.INCOMPLETE_SIGNUP

2014-08-12 Thread Anash P. Oommen (AdWords API Team)
Hi Noah,

Could you try logging into your account and re-entering your credit card 
information for AdWords API? That should most likely address the errors. If 
it doesn't, then send me your customer id by using the "reply to author" 
option, and I can investigate this further.

Cheers,
Anash P.Oommen,
AdWords API Advisor.

On Monday, August 11, 2014 5:24:26 PM UTC-4, Noah wrote:
>
> Hi,
>
> Setup a new test MCC account to develop a new software tool.  All billing 
> info is input,  have agreed to all terms, have digitally signed and the 
> necessary documents.  
>
> When logging into the MCC account from the web side, it works fine, we can 
> create ads, etc.
>
> But, when connecting through the API, and requesting a basic adgroup 
> performance report, we keep getting an error about "incomplete signup".  
> Can someone help me diagnose this error:
>
> Below is the actual response:
>
> 
>
> AdWordsReportBadRequestError: Type: QuotaCheckError.INCOMPLETE_SIGNUP
> Trigger: 
> Field Path: None
>
> -
>
> Thank You
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: [5-9821000004395] Problema Ativação API

2014-08-12 Thread Anash P. Oommen (AdWords API Team)
Hi Lucas,

If you cannot enter a credit card to activate your developer token, then 
please reach out to your Google account representative or support phone 
numbers  and ask them to 
check if you qualify for AdWords API Invoicing.

Cheers,
Anash P. Oommen
AdWords API Advisor.

On Monday, August 11, 2014 2:20:02 PM UTC-4, Lucas Pinhol wrote:
>
> Yes I am having problems with billing, how do I solve you could inform me? 
>
>  
>
> Is there another way to configure the billing to begin to use the API? 
>
>  
>
> We are developing a very good system for the improvement of our service to 
> the customer, and we need it very urgently.
>
>  
>
> *De:* adwords-api@googlegroups.com [mailto:adwords-api@googlegroups.com] 
> *Enviada em:* segunda-feira, 11 de agosto de 2014 12:46
> *Para:* lu...@webfocosp.com.br
> *Assunto:* RE: [5-982104395] Problema Ativação API
>
>  
>
> Lucas,
>
>  
>
> Please do not post personal information and/or developer token on the 
> public forum.  The post has been deleted.  Please reset your token asap.
>
>  
>
> If I understood your question correctly, you were having trouble 
> completing billing information?  Please see this link 
> 
>  
> and use the AdWords API Compliance form.
>
>  
>
> Thanks,
>
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
>
> On 08/11/14 10:30:26 lu...@webfocosp.com.br wrote:
>
> Boa tarde,
>
>  
>
> Estou com problemas na ativação da API.
>
>  
>
> Eu preciso fazer a configuração do faturamento na MCC, para a liberação da 
> API, mas eu não estou conseguindo, porque está dando cartão de credito 
> recusado.
>
>  
>
> Eu liguei na Administradora do cartão e eles me informaram que o Google 
> está tentando cobrar em reais em um site estrangeiro e precisa ser cobrado 
> em dollar, o que eu preciso fazer para o Google cobrar em Dollar o 
> faturamento ?
>
>  
>
> Segue imagem:
>
>  
>
>  
>
>  
>
>  
>
> -- 
> -- 
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and Google+:
> https://googleadsdeveloper.blogspot.com/
> https://plus.google.com/+GoogleAdsDevelopers/posts
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>  
> 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
> --- 
> You received this message because you are subscribed to the Google Groups 
> "AdWords API Forum" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to adwords-api+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Apache Axis SAX2EventRecorder OutOfMemory exception after a while

2014-08-12 Thread Anash P. Oommen (AdWords API Team)
Hi Dan,

Could you open an issue 
at https://github.com/googleads/googleads-java-lib/issues? I think it will 
be useful to verify whether this is an issue with the client library or not.

Cheers,
Anash P. Oommen,
AdWords API Advisor.

On Monday, August 11, 2014 5:40:57 AM UTC-4, Dan wrote:
>
> Hi,
>
> I'm running a tomcat application which uses the AdWords API version 1.27.0.
>
> I have found that after around 7-10 days of running, the application gets 
> closer and closer to the 2GB heap limit and the JVM is unable to GC 
> efficiently. Then, I get an OutOfMemory exception and the application needs 
> to be restarted.
>
> I have taken a heap dump and have found that most of the objects on the 
> heap are strings containing XML messages, referenced from SAX2EventRecorder 
> objects. It looks like this is part of Apache Axis 1.4, pulled in by the 
> adwords-axis dependency required by the AdWords API. 
>
> Does anyone know what would cause a memory leak here, and how it could be 
> prevented?
>
> Thanks!
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


need api for software

2014-08-12 Thread Bis Lalit
hello 
This is Lalit .i am developing software.we need Google API for 
Google Map.  Please contact me 


 Lalit Raghav
Contact No 9350249888,9650315430
email -bis.la...@gmal.com

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Google Shopping

2014-08-12 Thread Ralf Hartung
Hallo,
wir benötigen die API da Adwords umgestellt wurde für Google Shopping.
Da wir zig Verkäufer Accounts auf Google- Shopping führen, müssen wir diese 
nun mit Kampagnen in Adwords hinzufügen.

Dieses wurde vorher geregelt über die Labels.

Jetzt unsere Frage:
Da wir uns für eine API Schnittstelle extern registrieren müssen, wie muss 
diese Registrierung sein um an die Token herranzukommen?
Ein Test- Account scheint nicht für uns gehen da wir ja damit arbeiten 
möchten und es steht auch dort das die Anwendunge nicht auf live- Kampagnen 
zugreifen können.
Wenn wir den zugesendeten Link 
https://services.google.com/fb/forms/newtoken/ betätigen müssen wir auf 
Seite 2 Dokumente und Template- Bilder hochladen.
Wir wollen aber nichts entwickeln sondern wir benötigen nur die Token-Keys 
für die API um Google- Shopping zu Kampagnen zu verwalten.

Leider kann uns die Hilfe per Chat von Adwords dabei auch nicht 
weiterhelfen.

gruss



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


.Net API version - Have created test account and also have production account but get incomplete sign up error

2014-08-12 Thread fountain . ewemove
Hello,

I have been struggling with this for some time so your help is much 
appreciated in advance.
I am also using the C#.Net API wrapper which I have been able to understand 
and is now up and running. Although I am getting the error: 
Failed to get campaigns. Exception says "An API exception has occurred. See 
ApiException and InnerException fields for more 
details.""[QuotaCheckError.INCOMPLETE_SIGNUP @ ; trigger:'']" 

Here are the steps that I have followed.

   1. I have created a test account t...@testdomain.com
   2. I have created a MCC account for both Production (#MCC1) and Test 
   account (#MCC2)
   3. I have created a production developer token against #MCC1 (pending 
   approval, and does not matter as mostly focusing on testing at the moment)
   4. I have added the production developer token to the web.config
   5. I have added the Client Customer ID, The oAuth2ClientID and 
   oAuth2ClientSecret from the test account to the web.config

I can do the authentication just fine and I successful get the 
authorisation login. After that and once I get to execute I get the 
Incomplete_Signup error.

Also, when using the handy oAuthTokenGenerator with the clientID and secret 
from the test account, I get an exception:

System.Net.HttpListenerException was unhandled
  HResult=-2147467259
  Message=Access is denied
  Source=System
  ErrorCode=5
  NativeErrorCode=5
  
I am puzzled. Shouldn't this be working? I followed the documentation to 
the letter and I guess it should be working. Let me know if you need any 
IDs for investigation.

Kind regards.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Waiting 3 months already for approval API key...

2014-08-12 Thread info
I requested 08 may 2014 a free api key but the status is still "awaiting 
for approval". How long do I have to wait?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: About GetKeywordIdeas help?

2014-08-12 Thread Tim
Hi Ray,

Thanks for your answer.
About the second question...


Example:

$user = new AdWordsUser();

$user->LogAll();

$targetingIdeaService = $user->GetService('TargetingIdeaService', 
'v201402');

$keyword = array('digital', 'marketing');

$selector = new TargetingIdeaSelector();
$selector->requestType = 'IDEAS';
$selector->ideaType = 'KEYWORD';
$selector->requestedAttributeTypes = array('KEYWORD_TEXT', 
'SEARCH_VOLUME', 'CATEGORY_PRODUCTS_AND_SERVICES');

$languageParameter = new LanguageSearchParameter();
$language = new Language();
$language->id = 1000;
$languageParameter->languages = array($language);

$relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
$relatedToQuerySearchParameter->queries = $keyword;
$selector->searchParameters[] = $relatedToQuerySearchParameter;
$selector->searchParameters[] = $languageParameter;

$selector->paging = new Paging(0, 
AdWordsConstants::RECOMMENDED_PAGE_SIZE);

do {
$page = $targetingIdeaService->get($selector);

if (isset($page->entries)) {
foreach ($page->entries as $targetingIdea) {
$data = MapUtils::GetMap($targetingIdea->data);
$keyword = $data['KEYWORD_TEXT']->value;
$search_volume = isset($data['SEARCH_VOLUME']->value) ? 
$data['SEARCH_VOLUME']->value : 0;

printf("KEYWORD_TEXT = '%s'  SEARCH_VOLUME = '%s' 
", $keyword, $search_volume);
}
} else {
print "No keywords ideas were found.\n";
}

$selector->paging->startIndex += 
AdWordsConstants::RECOMMENDED_PAGE_SIZE;
} while ($page->totalNumEntries > $selector->paging->startIndex);



Result:

KEYWORD_TEXT = 'digital marketing' 
SEARCH_VOLUME = '74000'
...
KEYWORD_TEXT = 'market research methods' 
SEARCH_VOLUME = '1600'
KEYWORD_TEXT = 'small business' 
SEARCH_VOLUME = '74000'
KEYWORD_TEXT = 'digital asset management' 
SEARCH_VOLUME = '8100'
KEYWORD_TEXT = 'advertise online' 
SEARCH_VOLUME = '1000'
...



How do I know each the KEYWORD_TEXT is belong to 'digital' or 'marketing'?



Thanks,

Tim

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: CRITERIA_PERFORMANCE_REPORT - Invalid characters on column Dynamic ad target

2014-08-12 Thread Igor Schut
Several months later, still no fix released for this issue. No updates 
given. Seems to be a dead end here.

Op dinsdag 22 april 2014 23:15:27 UTC+2 schreef Ed-:
>
> Hi,
>
> I am trying to retrieve a criteria report for DSA campaigns, but the 
> column parameter keeps coming with scrambled characters I could not figure 
> out what they mean... I am guessing it is some kind of formatting.
>
> *What is the trick to unscramble something like:*
>  ���#� %�  URL>>/celulares�  �  � 
>
>
> The bit we need from it is:
> url>>/celulares
> (since that is what appears on GA side).
>
> I am downloading CRITERIA_PERFORMANCE_REPORT, a complete account (
> 520-777-8829), yesterday's data, GZIPPED_CSV, and the problem is within 
> the column:
> Parameter Dynamic ad target dynamicAdTarget WebpageParameter Attribute  
> Examples of adgroup ids returning scrabbled criteria:
>  8990062492  8990062132  8763294412  8990061052 
>
> Thank you,
> Ed
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and Google+:
https://googleadsdeveloper.blogspot.com/
https://plus.google.com/+GoogleAdsDevelopers/posts
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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
--- 
You received this message because you are subscribed to the Google Groups 
"AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.