API Review Team Approval

2013-07-26 Thread Mateusz Kitka
Hi,

I am wondering how much time usually we have to wait for approval for our 
test API application? I found information about 48h but it is more than 72h 
and still we don't have any answer. Should we do something more than fill 
in and send that form https://services.google.com/fb/forms/newtoken/?

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

--- 
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/groups/opt_out.




Error: User Rate Limit Exceeded -> OAuth2 / PHP clientlibrary / cross client reporting / SimpleOAuth2Handler->RefreshAccessToken

2013-07-26 Thread Jan Catrysse
Hello,

We've updated to adWords API v201306 and switched from simple login to 
OAuth2. We are using one MCC account to access multiple underlying customer 
accounts. OAuth2 is working fine when accessing only a few 
ClientCustomerId’s.

A “User Rate Limit Exceeded” error is occurring when spawning multiple 
processes (lets say 20), getting some info from CampaignService. It seems 
that this is not an adWords error, but a Google API error (OAUTH 2), when 
refreshing the authtoken to often. This is however handled by the PHP 
Client Library…
We’ve made sure that “new AdWordsUser()” and “GetAuthToken()” is called 
before the fork and “SetClientCustomerId()” and “GetService()” inside the 
fork. It is our understanding that the php client library should handle the 
refresh token afterwards…

What are we doing wrong? It is not possible to change the rate limits for 
AdWords inside Google API…

Thanks,
Jan

How is the script made up (simplified, just to get the idea):

>  $user = new AdWordsUser();
> $user->SetOAuth2Info(
> array('client_id' => CONFIG_GAPI_CLIENT_ID,
> 'client_secret' => CONFIG_GAPI_CLIENT_SECRET,
> 'refresh_token' => CONFIG_GAPI_REFRESH_TOKEN)
> );
> $user->SetUserAgent(CONFIG_GAPI_USERAGENT);
> $user->SetDeveloperToken(CONFIG_GAPI_DEVELOPER_TOKEN);
> $user->SetApplicationToken(CONFIG_GAPI_APPLICATION_TOKEN);
> $user->GetAuthToken();
>
> $aAccounts = array('account', 'anotheraccount', 'andanother');
> $children = array();
> $i=0;
> while ($i < count($aAccounts)) {
> $customerId = $aAccounts[$i];
> if (($pid = pcntl_fork()) === 0){
> // Child process
> try {
> $user->SetClientCustomerId($customerId);
> $campaignService = $user->GetService('CampaignService', 
> 'v201306');
> $selector = new Selector();
> $selector->fields = array('Status', 'StartDate', 'EndDate', 
> 'Id');
> $selector->paging = new Paging(0, 10);
> do {
> // Make the get request.
> $page = $campaignService->get($selector);
> $selector->paging->startIndex += 10;
> } while ($page->totalNumEntries > 
> $selector->paging->startIndex);
> } catch (Exception $e) {
> echo $e->getTraceAsString();
> }
> exit();
> }else if ($pid){
> // Parent process
> $children[] = $pid;
> }
> $i++;
> }
> ?>
>

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

--- 
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/groups/opt_out.




Re: [InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro]

2013-07-26 Thread mcc
Still getting same error
 [InternalApiError.UNEXPECTED_INTERNAL_API_ERROR @ 
com.google.ads.api.services.common.error.InternalApiError.(InternalApiErro]


One more Issue is not getting refersh token wirh access token
Is this because of test account or unapproved developer token.i m only 
getting access_token,expiresin,token_type there is no refresh token.

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

--- 
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/groups/opt_out.




how to rename a campaign in adwords api php

2013-07-26 Thread Akhilesh Ojha


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

--- 
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/groups/opt_out.




Adwords API sign up

2013-07-26 Thread rinky . dudani
Hi There,

I want to apply for Adwords API. When I visites My account tab under my MCC 
account, and then Adwords API center, it asks for "Monthly API Budget". Can 
anyone please let me know what to mention in this part?

Also, that form is asking for "Company email" where google will contact. So 
should I mention my email address instead of developer'email address and 
then I will forward those emails to my developer? I just want to keep this 
thing under my control.


Please advice.


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

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

--- 
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/groups/opt_out.




should ADGROUP_PERFORMANCE_REPORT return all bid types set on an ad group?

2013-07-26 Thread David Bonner
Hi all,

We've traditionally used the ADGROUP_PERFORMANCE_REPORT as a structure 
report to fetch details about ad groups, including the current bids set. 
 It seems like with v201302, the report only returns a value for the 
currently active bidding strategy...ie. if set to MANUAL_CPC, we don't get 
the CPM or CPA bids in the report.

Is this intentional?

Thanks,
Dave

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

--- 
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/groups/opt_out.




Account is down-alert?

2013-07-26 Thread Emma Karlsson
Hola! 

Trying to find a solution on how to build an alert system for critical 
issues, prio one if an account does not get any traffic for any kind of 
reason. Just a "sleep well at night - things are running as it should for 
all clients" kind of alert. 
Best would of course be if it could be connected to your phone so you 
receive a text message for instant connected to a jour-telephone. 
I'm not a developer so sorry if I might as something obvious. If anyone 
have a solution I will bring one in though, so a technical answer is not a 
problem. 

best,
Emma

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

--- 
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/groups/opt_out.




Re: Intermittent QuotaCheckError.INVALID_TOKEN_HEADER

2013-07-26 Thread Akinyemi Koyi
I am also facing the same issue. Please is there a solution?

Regards

AK

On Friday, July 8, 2011 6:16:38 PM UTC+12, Anash P. Oommen wrote:
>
> Hi everyone,
>
> If you are seeing these issues now, could you post a requestId so I can 
> trace the logs at my end?
>
> 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

--- 
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/groups/opt_out.




Re: ReportDefinitionError.CUSTOMER_SERVING_TYPE_REPORT_MISMATCHselector

2013-07-26 Thread DEEPAK KUMAR
Hello Takeshi

Thanks for reply.
I have changed clientCustomerId.
Now it is working.

Thanks & Warm Regards
Deepak Singh

On Tuesday, July 23, 2013 9:56:46 AM UTC+5:30, Takeshi Hagikura (AdWords 
API Team) wrote:
>
> Hi,
>
> Please see this common error 
> page
> . 
> For the clientCustomerId header, please make sure you are requesting the 
> clientCustomerId for a client account not a MCC account.
>
> Best,
> - Takeshi, AdWords API Team
>
> On Saturday, July 20, 2013 5:13:55 PM UTC+9, DEEPAK KUMAR wrote:
>>
>> Hello All 
>>
>> I am trying to download Report Using Google adwords api.
>> When I Run to the below given code it gives me error 
>> "ReportDefinitionError.CUSTOMER_SERVING_TYPE_REPORT_MISMATCHselector" 
>> Please Help me.
>>
>> using System;
>> using System.Collections.Generic;
>> using System.Linq;
>> using System.Web;
>> using System.Web.UI;
>> using System.Web.UI.WebControls;
>> using System.IO;
>> using System.Diagnostics;
>> using System.Net;
>>
>> public partial class _Default : System.Web.UI.Page 
>> {
>> protected void Page_Load(object sender, EventArgs e)
>> {
>>
>> }
>> public bool DownloadReportDefinition(string reportDefinitionXml, 
>> string authToken, string clientCustomerId, string developerToken, string 
>> filePath, bool downloadInMicros)
>> {
>> Uri downloadUrl = new Uri("
>> https://adwords.google.com/api/adwords/reportdownload/v201306";);
>>
>> WebRequest request = HttpWebRequest.Create(downloadUrl);
>> request.Headers.Add("clientCustomerId: " + clientCustomerId);
>> request.Headers.Add("developerToken: " + developerToken);
>> request.Headers.Add("Authorization: GoogleLogin auth=" + 
>> authToken);
>> request.Headers.Add("returnMoneyInMicros: " + 
>> downloadInMicros.ToString().ToLower());
>>
>> request.Method = "POST";
>> request.ContentType = "application/x-www-form-urlencoded";
>> using (StreamWriter writer = new 
>> StreamWriter(request.GetRequestStream()))
>> {
>> writer.Write("__rdxml=" + 
>> HttpUtility.UrlEncode(reportDefinitionXml));
>> }
>>
>> WebResponse response = null;
>> bool success = false;
>> try
>> {
>> response = request.GetResponse();   
>> success = true;
>> }
>> catch (WebException ex)
>> {
>> // The server will return an error code other than 200 if 
>> something goes wrong. The actual reason for
>> // failure can be found by reading the response.
>> response = ex.Response;
>> 
>> }
>>  DownloadReportToFile(filePath, response);
>>  return success;
>> }
>>
>> private static void DownloadReportToFile(string filePath, WebResponse 
>> response)
>> {
>> FileStream outputStream = File.Create(filePath);
>> using (Stream responseStream = response.GetResponseStream())
>> {
>> CopyStream(responseStream, outputStream);
>> }
>> outputStream.Close();
>> }
>>
>> private static void CopyStream(Stream sourceStream, Stream 
>> targetStream)
>> {
>> int bufferSize = 2 << 20;
>> byte[] buffer = new byte[bufferSize];
>>
>> int bytesRead = 0;
>> while ((bytesRead = sourceStream.Read(buffer, 0, bufferSize)) != 
>> 0)
>> {
>> targetStream.Write(buffer, 0, bytesRead);
>> }
>> }
>> protected void btnDownloadRepot_Click(object sender, EventArgs e)
>> {
>> //
>> string reportDefination = "";
>> reportDefination = "";
>> reportDefination = reportDefination + "";
>> reportDefination = reportDefination + "Id";
>> reportDefination = reportDefination + "Date";
>> reportDefination = reportDefination + 
>> "AdGroupId";
>> reportDefination = reportDefination + 
>> "Impressions";
>> reportDefination = reportDefination + "Clicks";
>> reportDefination = reportDefination + "Cost";
>> reportDefination = reportDefination + 
>> "Conversions";
>> reportDefination = reportDefination + 
>> "ConversionValue";
>> reportDefination = reportDefination + 
>> "AveragePosition";
>> reportDefination = reportDefination + "";
>> reportDefination = reportDefination + "20130701";
>> reportDefination = reportDefination + "20130718";
>> reportDefination = reportDefination + "";
>> reportDefination = reportDefination + "";
>> reportDefination = reportDefination + "AD PERFORMANCE 
>> REPORT";
>> reportDefination = reportDefination + 
>> "AD_PERFORMANCE_REPORT";
>> reportDefination = reportDefination + 
>> "CUSTOM_DATE";
>> reportDefination = reportDefination + 
>> "XML";
>> reportDefination = repor

Re: Campaigns Limited by Budget

2013-07-26 Thread Derrick F
Yes, I am looking to be able to get this data as well. We service nearly 
200 accounts so using the API for getting this status would be ideal. I 
know that in order for the status to trigger you need to have Lost IS due 
to Budget > 0%. That's pretty easy to flag, but the calculation in the 
background that is hard to figure out is can you increase the daily budget 
by some amount without increasing CPC? That is sort of the missing link. 
Hopefully this gets added to the API soon.

On Thursday, July 25, 2013 3:36:50 AM UTC-7, Rob wrote:
>
> Thanks Zweitze - that first option should help us out well enough.
>
> I'd be interested to know how the AdWords UI calculates the same status - 
> anyone from Google have the answer to that please?
>
> On Thursday, 25 July 2013 10:37:15 UTC+1, Zweitze wrote:
>>
>> I assume this is derived from other results of the campaign. I see two 
>> methods:
>>
>> 1. Retrieve an Adhoc report with the fields 
>> SearchBudgetLostImpressionShare and ContentBudgetLostImpressionShare. When 
>> either field indicates that indeed impressions were lost, the budget is not 
>> high enough.
>> 2. Retrieve an Adhoc report with the fields Cost and Budget. Compare 
>> them, when Cost > 95% of  budget then you can assume that the budget is 
>> limiting the number of impressions.
>>
>> For both methods you need to supply a period, and you need to experiment 
>> with this. (eg. last 7 days, this month etc)
>> Note: The second method is tough to implement when you use shared budgets.
>>
>>
>> Hope this helps
>>
>>
>>
>> On Wednesday, July 24, 2013 4:54:48 PM UTC+2, Rob wrote:
>>>
>>> Hi,
>>>
>>> Is there a way to retrieve the "Limited by Budget" status for a campaign 
>>> via the API?
>>>
>>> If there is, I can't find it in the docs, only the usual campaign status 
>>> values of "ACTIVE", "PAUSED" and "DELETED".
>>>
>>>

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

--- 
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/groups/opt_out.




Error: User Rate Limit Exceeded -> OAuth2 / php client library / MCC / fork

2013-07-26 Thread Jan Catrysse
Hello,

We've updated to adWords API v201306 and switched from simple login to 
OAuth2. We are using one MCC account to access multiple underlying customer 
accounts. OAuth2 is working fine when accessing only a few 
ClientCustomerId’s.

A “User Rate Limit Exceeded” error is occurring when spawning multiple 
processes (lets say 20), getting some info from CampaignService. It seems 
that this is not an adWords error, but a Google API error (OAUTH 2), when 
refreshing the authtoken to often. This is however handled by the PHP 
Client Library…
We’ve made sure that “new AdWordsUser()” and “GetAuthToken()” is called 
before the fork and “SetClientCustomerId()” and “GetService()” inside the 
fork. It is our understanding that the php client library should handle the 
refresh token afterwards…

What are we doing wrong? It is not possible to change the rate limits for 
AdWords inside Google API…

Thanks,
Jan

How is the script made up (simplified, just to get the idea):
*SetOAuth2Info(
array('client_id' => CONFIG_GAPI_CLIENT_ID,
'client_secret' => CONFIG_GAPI_CLIENT_SECRET,
'refresh_token' => CONFIG_GAPI_REFRESH_TOKEN)
);
$user->SetUserAgent(CONFIG_GAPI_USERAGENT);
$user->SetDeveloperToken(CONFIG_GAPI_DEVELOPER_TOKEN);
$user->SetApplicationToken(CONFIG_GAPI_APPLICATION_TOKEN);
$user->GetAuthToken();

$aAccounts = array('account', 'anotheraccount', 'andanother');
$children = array();
$i=0;
while ($i < count($aAccounts)) {
$customerId = $aAccounts[$i];
if (($pid = pcntl_fork()) === 0){
// Child process
try {
$user->SetClientCustomerId($customerId);
$campaignService = $user->GetService('CampaignService', 
'v201306');
$selector = new Selector();
$selector->fields = array('Status', 'StartDate', 'EndDate', 
'Id');
$selector->paging = new Paging(0, 10);
do {
// Make the get request.
$page = $campaignService->get($selector);
$selector->paging->startIndex += 10;
} while ($page->totalNumEntries > 
$selector->paging->startIndex);
} catch (Exception $e) {
echo $e->getTraceAsString();
}
exit();
}else if ($pid){
// Parent process
$children[] = $pid;
}
$i++;
}
?>*

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

--- 
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/groups/opt_out.




RateExceededError

2013-07-26 Thread Jeremy
I'm getting this even though I have only used less than 2000 units so far 
today. 
Can anyone tell me how the 10k per day are working? My MCC is set to 
timezone EST and I did use 8500 units yesterday. When I went over 1500 
units today, I received the error. 
What timezone do I have to count the units in, or do I really have to count 
my units within the past 24 hours ?


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

--- 
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/groups/opt_out.




Dynamic price in ads

2013-07-26 Thread Valerii Buzivskyi
Hello

Does any one can help me, and show the way, how is it possible to create 
ads with dynamic price in API?

For example we have some products:

- Green T-Short from 5$,
- Blue T-Short  from  7$,
- Yellow T-Short  from  9$.

I create (with api) keywords with urls:
- green t-short   my.shop.com/green-t-short.html
- blue t-short  my.shop.com/blue-t-short.html
- yellow t-shortmy.shop.com/yellow-t-short.html

Than I want to create 1 ad for all keywords using {KeyWord:...}, and also 
need 1 more extra field to show different price for each product.

Someting like this:
1 row - {KeyWord: Coloured T-Shorts}
2 row - Beautiful {KeyWord: Coloured T-Shorts} from {Price: 4$}
3 row -  Buy it now!

Than when user looking for "Green T-Short", he will  see the next ad:

Green T-Shorts
Beautiful Green T-Shorts from 5$
Buy it now!

For "Blue T-Short", the other one:

BlueT-Shorts
Beautiful Blue T-Short from 7$
Buy it now!

And for the "Yellow T-Short":
Yellow T-Short 
Beautiful  Yellow T-Short  from 9$
Buy it now!

Is it possible to make such kind of ads with API?

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

--- 
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/groups/opt_out.




API Adwordss problem

2013-07-26 Thread marek . koziejowski
Hello,

Could somebody see what's going on with my approval AdWords tokken. 

My Customer ID: 911-744-9483.

 If something is wrong would you be so helpful and explain what I shoud do 
to get this tokken?

 I'll be s greatful.

Thank You So Much..

Marek

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

--- 
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/groups/opt_out.




Error in running adwords api examples in php

2013-07-26 Thread dev3 . webwavers
*How to run adwords api examples using url in php*

please reply to my email 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

--- 
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/groups/opt_out.




Re: QuotaCheckError.INCOMPLETE_SIGNUP with test account

2013-07-26 Thread Akinyemi Koyi
I am facing the same problem Danial,
Please is there a solution for this?

Account Number : 599-257-3189 

Regards
AK

On Friday, July 12, 2013 7:33:23 AM UTC+12, Danial Klimkin wrote:
>
> Hello Izeni,
>
>
> What are your MCC account and test account IDs?
>
>
> -Danial, AdWords API Team.
>
>
> On Thursday, July 11, 2013 3:57:51 AM UTC+4, Izeni wrote:
>>
>> I noticed that Chuck mentioned that he had already agreed to the TOS:
>>  
>>
>>>  I have filled out the form, and agreed to the TOS. 
>>>
>>  
>> I think I'm in the same boat.  I also have a test account, I've set it up 
>> for Manual Payments (Because I'm just testing at the moment, I don't want 
>> to incur any charges), and I've agreed to the Terms and Conditions.  I'm 
>> still getting QuotaCheckError.INCOMPLETE_SIGNUP however.
>>
>> Any suggestions?
>>
>> -- Richard Jelte, with Izeni Inc.
>>
>>
>> On Monday, June 3, 2013 4:42:47 AM UTC-6, Danial Klimkin wrote:
>>>
>>> Hello Chuck,
>>>
>>>
>>> This error usually means you have not accepted Terms and Conditions. You 
>>> need to set up the billing for the MCC account and review and accept T&C to 
>>> be able to use the token.
>>>
>>>
>>> -Danial, AdWords API Team.
>>>
>>>
>>> On Friday, May 24, 2013 11:09:52 PM UTC+4, Chuck Reeves wrote:

 I am trying to get information using a test account from MCC.  We are 
 currently awaiting approval for the API but in the meantime we would like 
 to adjust our product since we no longer get adword labels from GA any 
 more.  I have filled out the form, and agreed to the TOS.  Is there 
 something else that is needed?
>>>
>>>

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

--- 
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/groups/opt_out.




Re: UNEXPECTED_INTERNAL_API_ERROR on creating TextAds

2013-07-26 Thread mcc


On Tuesday, February 21, 2012 2:42:42 AM UTC-8, Anash P. Oommen wrote:
>
> Hi everyone,
>
> This issue should be fixed now. Let me know if you are still seeing these 
> errors.
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.
>
>
Still getting same error while mutatelink in php v201306 sdk 

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

--- 
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/groups/opt_out.




API access to API usage data?

2013-07-26 Thread Jacob Elder
Is there any programmatic way to get the number of API calls I've used in a 
given period?

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

--- 
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/groups/opt_out.




Re: [QuotaCheckError.INCOMPLETE_SIGNUP @ ; trigger:''] error

2013-07-26 Thread Anash P. Oommen (AdWords API Team)
Hi Justinas,

If you can share your account id, I can take a look.

Cheers,
Anash P. Oommen,
AdWords API Advisor

On Wednesday, July 24, 2013 11:45:19 AM UTC+5:30, Justinas Gulbinas wrote:
>
> Hello 
>
> I've been using my live MCC account for several months successfully, 
> started to get [QuotaCheckError.INCOMPLETE_SIGNUP @ ; trigger:''] 
> error. Nothing has changed at our side also: v201302 via python api 15.8.0 
> all the time. 
> Tested with v201306 and python api 15.9 - same error. 
>
>  - Justinas

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

--- 
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/groups/opt_out.




Re: Invalid token on staging env

2013-07-26 Thread Anash P. Oommen (AdWords API Team)
Hi Matthew,

Are you using this to make AdWords API calls? The scope doesn't seem to be 
include AdWords API scope.

Cheers,
Anash P. Oommen
AdWords API Advisor.

On Friday, July 26, 2013 7:37:19 AM UTC+5:30, Matthew Ledom wrote:
>
> I have created our platform on my localhost. I have since deploy the code 
> to staging. I'm using the same client id and secret from the api console. I 
> have added the server name to the list. I went through the oauth redirect 
> and have obtained a token and have checked it with the validation service:
>
> {
>
>- issued_to: "10...96.apps.googleusercontent.com",
>- audience: "10...96.apps.googleusercontent.com",
>- user_id: "116...117",
>- scope: "https://www.googleapis.com/auth/userinfo.email 
>https://www.googleapis.com/auth/plus.me";,
>- expires_in: 2589,
>- email: "myad...@test.com ",
>- verified_email: true,
>- access_type: "offline"
>
> }
>
> When I try to use this token I get OAUTH_TOKEN_INVALID. Why would the 
> token be invalid in one service but not the other? Can I use one client id 
> from the api access console for multiple sites or should I create one for 
> each?
>

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

--- 
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/groups/opt_out.




Re: API Review Team Approval

2013-07-26 Thread Mateusz Kitka
Hi,

We are still waiting for any response for our API form.
Where I can get any information about acceptance or some feedback?

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

--- 
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/groups/opt_out.




Re: QuotaCheckError.INCOMPLETE_SIGNUP with test account

2013-07-26 Thread Danial Klimkin
Hello Akinyemi,


This account is already disabled. Please create a new MCC and apply for the 
token and a test account.


-Danial, AdWords API Team.


On Thursday, July 25, 2013 6:15:42 AM UTC+4, Akinyemi Koyi wrote:
>
> I am facing the same problem Danial,
> Please is there a solution for this?
>
> Account Number : 599-257-3189 
>
> Regards
> AK
>
> On Friday, July 12, 2013 7:33:23 AM UTC+12, Danial Klimkin wrote:
>>
>> Hello Izeni,
>>
>>
>> What are your MCC account and test account IDs?
>>
>>
>> -Danial, AdWords API Team.
>>
>>
>> On Thursday, July 11, 2013 3:57:51 AM UTC+4, Izeni wrote:
>>>
>>> I noticed that Chuck mentioned that he had already agreed to the TOS:
>>>  
>>>
  I have filled out the form, and agreed to the TOS. 

>>>  
>>> I think I'm in the same boat.  I also have a test account, I've set it 
>>> up for Manual Payments (Because I'm just testing at the moment, I don't 
>>> want to incur any charges), and I've agreed to the Terms and Conditions. 
>>>  I'm still getting QuotaCheckError.INCOMPLETE_SIGNUP however.
>>>
>>> Any suggestions?
>>>
>>> -- Richard Jelte, with Izeni Inc.
>>>
>>>
>>> On Monday, June 3, 2013 4:42:47 AM UTC-6, Danial Klimkin wrote:

 Hello Chuck,


 This error usually means you have not accepted Terms and Conditions. 
 You need to set up the billing for the MCC account and review and accept 
 T&C to be able to use the token.


 -Danial, AdWords API Team.


 On Friday, May 24, 2013 11:09:52 PM UTC+4, Chuck Reeves wrote:
>
> I am trying to get information using a test account from MCC.  We are 
> currently awaiting approval for the API but in the meantime we would like 
> to adjust our product since we no longer get adword labels from GA any 
> more.  I have filled out the form, and agreed to the TOS.  Is there 
> something else that is needed?



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

--- 
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/groups/opt_out.




Re: updating from Cross Client Report Download (ReportUtils::RunAsyncReport) to ReportUtils::DownloadReport

2013-07-26 Thread Paul Matthews (AdWords API Team)
Anyone considering using pcntl, should also bear in mind that it's fine for 
a small script, but it's easy to end up exhausting resources. It's also 
very difficult to debug.

A much more scalable solution to the problem is implementing a Job Queue. 
This can allow you to synchronize tasks between servers as well as on a 
single machine. An example of a Job Queue compatible with PHP is 
Gearman. 
They've got a nice quick start 
guidethat can help you get started 
with it.

Regards,

- Paul, AdWords API Team.

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

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

--- 
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/groups/opt_out.




Get ClientCustomerID with OAUTH login, using Python library

2013-07-26 Thread tomflat561
Hi,
 
Is it possible to get the clientCustomerID, after approval of the OAUTH 
flow-the Python library requires the customer ID, though I want to get 
this obviously to populate my client fields.. - I am using OAUTH, the 
Python library and the client fields are:
 
 client = AdWordsClient(headers={
 
  'developerToken': token,   #%s++USD
 
  'clientCustomerId': client_customer_id,
 
  'userAgent': 'Mozilla/4.0',
 
  'oauth2credentials': credential
 
  })
 
 
 
 
Many Thanks,
 
Tom.

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

--- 
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/groups/opt_out.




Re: Cost Data Format in XML Reports

2013-07-26 Thread Danial Klimkin
Hi Pierre-Luc,


Thanks for clarifying. I've logged it as an internal request.


-Danial, AdWords API Team.


On Thursday, July 25, 2013 9:11:53 PM UTC+4, Pierre-Luc Soucy wrote:
>
> Hi Danial,
>
> I ran into the issue Manas mentioned with a CAMPAIGN_PERFORMANCE_REPORT, 
> but it may affect other report types as well.
>
> The "cost" value was formatted with a comma as the thousand separator, 
> while "clicks" and "impressions" had no thousand separator.
>
> I just added some code to our implementation to parse the values in the 
> cost column and take the comma into account, but I think it would be best 
> that the cost value doesn't contain a thousand separator anyway.
>
> Hope this helps,
>
> Pierre-Luc
>

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

--- 
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/groups/opt_out.




Re: Issue migrating from v201209 to v201306

2013-07-26 Thread Tommy Newman
To add a further update to this, I have just tried to run directly the PHP 
example:

/adwords_api_php_4.4.0/examples/AdWords/v201306/BasicOperations/AddCampaigns.php

Having added my developerToken, userAgent and clientCustomerID into 
auth.ini.

I get the same "no data received" from Google Chrome.

So that rules out it being a problem with my code, and it seems to be some 
problem with the PHP API commicating with Google?

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

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

--- 
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/groups/opt_out.




client secret for service accounts

2013-07-26 Thread SkaiBoa
Hello,

we got a Java-based application that uses the Adwords API with a service 
account.

After the migration from 201209 to 201306 I got the following message when 
I try to run the sample applications from the 
adwords-axis-examples-1.18.0.tar.gz-Files:

Exception in thread "main" Client secret must be set as 
api.adwords.clientSecret in ads.properties.

But in the API console there is no client secret für service accounts.

Is there any solution for this ?

The application works fine for months and now after Google turned off the 
201209-API and the mirgration to the 201306-API nothing works anymore. 

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

--- 
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/groups/opt_out.




Re: API Review Team Approval

2013-07-26 Thread Mateusz Kitka
I am sorry but does anyone from Google loop up in here? Or maybe thare is 
better way to communicate with your support?

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

--- 
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/groups/opt_out.




Re: Issue migrating from v201209 to v201306

2013-07-26 Thread Tommy Newman
It looks to be an OAuth issue, however I can't make any sense of how to go 
about getting required tokens, I've created a refresh token, but I now get:

An error has occurred: { "error" : "invalid_grant" }

Please can someone from Google contact 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

--- 
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/groups/opt_out.




Re: Is {device} value track parameter available for PLAs?

2013-07-26 Thread CFJ
Yes, you can add the {device} ValueTrack parameter (and many others) to the 
adwords_redirect URL in your merchant center feed and they WILL be 
populated.

I have successfully utilized all of the following ValueTrack parameters in 
a live Product Listing Ads account: {adwords_producttargetid}, {adtype}, 
{network}, {creative}, {device}, and {ifmobile:[value]}

Hope that helps.



On Thursday, July 25, 2013 6:25:48 PM UTC-4, HK wrote:
>
> Hi,
>
> Thisblog
>  entry discusses the "...new ValueTrack features for advertisers using 
> keyword level URLs" which makes me wonder if the new {device} value track 
> parameter is available for Product Listing Ads as well (adwords_redirect) 
> as opposed to only keyword triggered ads? I assume it is, but as testing 
> these parameters is not easily done except with live products, it'd be 
> great to get confirmation on this before proceeding with our 
> implementation. Ideally, I'd like to use it for PLA, TextAds, Placements 
> and Sitelinks.
>
> Value track parameters documentation:
> https://support.google.com/adwords/answer/2375447?hl=en
>
> Thanks,
> Hans
>

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

--- 
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/groups/opt_out.




Re: Is {device} value track parameter available for PLAs?

2013-07-26 Thread HK
Great, thanks for the reply.

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

--- 
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/groups/opt_out.




Why is ClientLoginTokens marked as deprecated

2013-07-26 Thread SkaiBoa
Hello,

I try to use the Adwords API for a Java-Application with a service account.

I find a useful example an this Googlepage:

http://code.google.com/p/google-api-ads-java/wiki/NoClientLibrary

Its updated 14 days ago and it uses the 201306-Version of the Adowrds API

This example works very fine for me, but the class import 
com.google.api.ads.common.lib.auth.ClientLoginTokens; is mark as deprecated.

My question is, how long this kind of authentifcation still works ?

If it works at least 6 month everything is fine.

If not, is there any tutorial or examples to use the Adwords API with 
service accounts in Java ?


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

--- 
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/groups/opt_out.




Re: Integer Id fields in GEO_PERFORMANCE_REPORT

2013-07-26 Thread Devesh Parekh
Hi Takeshi,

Yes, all the values for these ID fields are non-numerical (like "Ireland"
and "Cork"), and you can verify it by running the example query I provided.
According to the documentation, these should be Integers, and I would much
prefer to have the report behave as documented instead of as the way it
currently behaves.

-- 
Devesh


On Thu, Jul 25, 2013 at 10:49 PM, Takeshi Hagikura (AdWords API Team) <
adwordsapiadvisor+take...@google.com> wrote:

> Hi,
>
> Was there a non numerical value for Id field?
> If not, you can map it to Integers in a programing language.
> Basically the result is returned as CSV or XML as you specified when you
> download a report.
>
> Best,
> - Takeshi,
>
> On Wednesday, July 24, 2013 9:19:34 AM UTC+9, Devesh Parekh wrote:
>>
>> According to https://developers.google.**com/adwords/api/docs/appendix/**
>> reports#geo,
>> CountryCriteriaId and RegionCriteriaId should be Integers, but the when I
>> send an AWQL query to the reportdownload endpoint (
>> https://adwords.google.com/**api/adwords/reportdownload/**v201306)
>> to return those fields, I get Strings. Example query: SELECT
>> CountryCriteriaId, RegionCriteriaId, Impressions FROM
>> GEO_PERFORMANCE_REPORT DURING 20130101,20130723
>>
>> Can you make them Integers?
>>
>> --
>> Devesh
>>
>  --
> --
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> 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
>
> ---
> You received this message because you are subscribed to a topic in the
> Google Groups "AdWords API Forum" group.
> To unsubscribe from this topic, visit
> https://groups.google.com/d/topic/adwords-api/EiGdtzXY30s/unsubscribe.
> To unsubscribe from this group and all its topics, send an email to
> adwords-api+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>

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

--- 
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/groups/opt_out.




Re: Get ClientCustomerID with OAUTH login, using Python library

2013-07-26 Thread tomflat561

On Friday, July 26, 2013 11:51:09 AM UTC+1, tomfl...@gmail.com wrote:
>
> Hi,
>  
> Is it possible to get the clientCustomerID, after approval of the OAUTH 
> flow- I know its possible if we have the email address already, though is 
> there any other way, e.g GetAccountInfo...the Python library requires the 
> customer ID, though I want to get this obviously to populate my client 
> fields.. - I am using OAUTH, the Python library and the client fields are:
>  
>  client = AdWordsClient(headers={
>  
>   'developerToken': token,   #%s++USD
>  
>   'clientCustomerId': client_customer_id,
>  
>   'userAgent': 'Mozilla/4.0',
>  
>   'oauth2credentials': credential
>  
>   })
>  
>  
>  
>  
> Many Thanks,
>  
> Tom.
>

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

--- 
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/groups/opt_out.




Re: Does Keyword Performance Report contain statistics of upgraded sitelinks?

2013-07-26 Thread David Torres (AdWords API Team)
Hi Andreas,

Keywords performance report will contain stats of the keywords that trigger 
your ad impressions, whether they included your upgraded site links or not. 
You need to query the Placeholder Feed Item Performance Report to get the 
stats specific to your upgraded extensions.

Best,

- David Torres - AdWords API Team

On Monday, July 22, 2013 9:43:19 AM UTC-4, gai-t...@etracker.de wrote:
>
> Hello,
>
> does the Keyword Performance Report also contain keyfigures of upgraded 
> sitelinks? Or do we need to query the Placeholder Feed Item Performance 
> Report for keyfigures of upgraded sitelinks?
>
> Thank you :-)
>
> Andreas B. 
>

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

--- 
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/groups/opt_out.




SearchRankLostImpressionShare fuzziness

2013-07-26 Thread Devesh Parekh
I'm running experiments and analyzing how my changes affect impressions by 
requesting Impressions and SearchRankLostImpressionShare from the reporting 
endpoint. I usually get pretty precise numbers in these reports like 
"13.08%", but I sometimes get really fuzzy numbers like "> 90%", which is 
not amenable to analysis.

Is there a reason why the number is so imprecise? If not, can you replace 
it with a more precise number? Better yet, can you report 
SearchRankLostImpressions directly instead of 
SearchRankLostImpressionShare, which is not very useful in cases where I 
have 0 impressions?

-- 
Devesh

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

--- 
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/groups/opt_out.