issue upgrading from Google Ads API v0 to v1 => Java call GoogleAdsServiceClient.search(SearchGoogleAdsRequest request) is stuck doing nothing

2019-03-12 Thread Artur
Dear Adwords Team,

to highlight the problem I have uploaded a simple Java example that gets 
all campaigns using v0 or v1 libraries. it basically is the same example 
that is provided in the libraries.
v0 works perfectly. the same code, adapted to v1 libraries, is stuck 
calling GoogleAdsServiceClient.search(SearchGoogleAdsRequest request) with 
no errors or results and will be stuck until I abort it manually. 
console.developers.google.com statistics show no errors aswell.

am I missing something obvious?

thank you in advance & best regards
Artur

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/2effef3d-f7e9-42dc-8816-518876827088%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
import com.google.ads.googleads.lib.GoogleAdsClient;
import com.google.ads.googleads.lib.GoogleAdsException;
import com.google.ads.googleads.v0.errors.GoogleAdsError;
import com.google.ads.googleads.v0.services.GoogleAdsRow;
import com.google.ads.googleads.v0.services.GoogleAdsServiceClient;
import 
com.google.ads.googleads.v0.services.GoogleAdsServiceClient.SearchPagedResponse;
import com.google.ads.googleads.v0.services.SearchGoogleAdsRequest;
import com.google.auth.Credentials;
import com.google.auth.oauth2.UserCredentials;

import java.io.IOException;

/** This example gets all campaigns. */
public class GetCampaigns {

private static final int PAGE_SIZE = 1000;

private static class GetCampaignsWithStatsParams {

private Long customerId;
}

public static void main(String[] args) throws IOException {
GetCampaignsWithStatsParams params = new 
GetCampaignsWithStatsParams();

params.customerId = Long.parseLong("INSERT CUSTOMER ID");

//  construct a `Credentials` object by specifying the client ID,
//  client secret, and refresh token at runtime, then pass that to the
//  `GoogleAdsClient` builder

System.out.println("Creating credentials");
Credentials credentials = UserCredentials.newBuilder()
.setClientId("INSERT CLIENT ID")
.setClientSecret("INSERT CLIENT SECRET")
.setRefreshToken("INSERT REFRESH 
TOKEN").build();

System.out.println("Creating googleAdsClient");
GoogleAdsClient googleAdsClient = 
GoogleAdsClient.newBuilder().setCredentials(credentials)
.setDeveloperToken("INSERT DEVELOPER 
TOKEN").build();

try {
new GetCampaigns().runExample(googleAdsClient, 
params.customerId);
} catch (GoogleAdsException gae) {
// GoogleAdsException is the base class for most 
exceptions thrown by an API
// request.
// Instances of this exception have a message and a 
GoogleAdsFailure that
// contains a
// collection of GoogleAdsErrors that indicate the 
underlying causes of the
// GoogleAdsException.
System.err.printf("Request ID %s failed due to 
GoogleAdsException. Underlying errors:%n",
gae.getRequestId());
int i = 0;
for (GoogleAdsError googleAdsError : 
gae.getGoogleAdsFailure().getErrorsList()) {
System.err.printf("  Error %d: %s%n", i++, 
googleAdsError);
}
}
}

/**
 * Runs the example.
 *
 * @param googleAdsClient the Google Ads API client.
 * @param customerId  the client customer ID.
 * @throws GoogleAdsException if an API request failed with one or more 
service
 *errors.
 */
private void runExample(Googl

escape square brackets in Google Ads Query Language Grammar

2019-03-12 Thread Artur
Hello,

how do I escape square brackets in the Google Ads Query Language Grammar. 
normally you would escape square brackets by writing "[[]" but this does 
not work in the Google Ads Query.

thank you and best regards
Artur

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/ef5628ef-e2db-4dae-8f69-6d7e5c9ace58%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: escape square brackets in Google Ads Query Language Grammar

2019-03-13 Thread Artur
Hello Dannison,

I am using LIKE operator to look for items that have a specific character 
pattern at the beginning (it includes square bracket characters). square 
brackets in LIKE operator are wildcard characters and to use them as a 
literal character I have to escape those.

e.g. 
normally this would work in SQL but it does not work in the Google Ads 
Query:
SELECT campaign.id,campaign.name FROM campaign WHERE campaign.name LIKE '[
*[]*campaign-with-brackets*]%*'

thank you & best regards
Artur


Am Mittwoch, 13. März 2019 04:39:13 UTC+1 schrieb googleadsapi-forumadvisor:
>
> Hi Artur,
>
> To better assist you, could you provide the complete query statement you 
> are using? I tried to include square brackets ( [ ] ) in my query on my end 
> and was able to generate reports successfully.
>
> Refer to the query below:
> SELECT campaign.id,campaign.name,campaign_budget.amount_micros FROM 
> campaign WHERE campaign.name IN ('*[*campaign-with-brackets*]*')
>
> Regards,
> Dannison
> Google Ads API Team
>
>
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog and discussion group:
> http://googleadsdeveloper.blogspot.com/search/label/adwords_api
> https://developers.google.com/adwords/api/community/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>
> Was your question answered? Please rate your experience with us by taking 
> a short survey.
> If not -- reply to this email and tell us what else we can do to help.
>
> Take Survey 
> <https://support.google.com/google-ads/contact/survey_transactional?caseid=6-110226070&hl=en&ctx=1>
>
> 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 03/13/19 00:09:58 artur...@gmail.com  wrote:
>
> Hello,
>
> how do I escape square brackets in the Google Ads Query Language Grammar. 
> normally you would escape square brackets by writing "[[]" but this does 
> not work in the Google Ads Query.
>
> thank you and best regards
> Artur
>
> -- 
> -- 
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
> Also find us on our blog:
> https://googleadsdeveloper.blogspot.com/
> =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
>  
> You received this message because you are subscribed to the Google
> Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to adwords-api+unsubscr...@googlegroups.com.
> Visit this group at https://groups.google.com/group/adwords-api.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/adwords-api/ef5628ef-e2db-4dae-8f69-6d7e5c9ace58%40googlegroups.com
>  
> <https://groups.google.com/d/msgid/adwords-api/ef5628ef-e2db-4dae-8f69-6d7e5c9ace58%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
> For more options, visit https://groups.google.com/d/optout.
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/55334681-5b73-41eb-a65c-4e1ca773c12a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: escape square brackets in Google Ads Query Language Grammar

2019-03-19 Thread Artur
is there a solution?

I am using JAVA btw

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/488556e2-a5e5-4339-b351-f113e7ecfea0%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Product feed is correctly configured in Google Merchant Center but fails to load in GoogleAds

2024-02-07 Thread Artur Nowak
Hi, 

I am currently integrating with Google Merchant Center with utilization 
of Google Content API for Shopping .NET library. We are transferring our 
products correctly, feed loads correctly in GMC, campaigns can be started, 
however following problem occurs on the side of GAds:

[image: GoogleSupport (2).png]\


what might be the cause of such problem?

Artur Nowak

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/1bc79e01-59ae-470f-b4aa-bbc06663b3f1n%40googlegroups.com.


Product feed is correctly configured in Google Merchant Center but fails to load in GoogleAds

2024-02-07 Thread Artur Nowak
Hi, 

I am currently integrating with Google Merchant Center with utilization 
of Google Content API for Shopping .NET library. We are transferring our 
products correctly, feed loads correctly in GMC, campaigns can be started, 
however following problem occurs on the side of GAds:

[image: GoogleSupport (2).png]\


what might be the cause of such problem?

Artur Nowak

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/36ac0bf8-d9fc-4882-8501-6dec74a70965n%40googlegroups.com.


Re: Product feed is correctly configured in Google Merchant Center but fails to load in GoogleAds

2024-02-12 Thread Artur Nowak
Our analyst forgot to enable dynamic remarketing option in GMC in "growth > 
manage programs". Case closed

Artur Nowak

środa, 7 lutego 2024 o 17:52:07 UTC+1 Artur Nowak napisał(a):

> Hi, 
>
> I am currently integrating with Google Merchant Center with utilization 
> of Google Content API for Shopping .NET library. We are transferring our 
> products correctly, feed loads correctly in GMC, campaigns can be started, 
> however following problem occurs on the side of GAds:
>
> [image: GoogleSupport (2).png]\
>
>
> what might be the cause of such problem?
>
> Artur Nowak
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d96453b2-4a6f-4142-93fa-a0a139d26d7an%40googlegroups.com.


SOAP-ERROR: Parsing WSDL

2014-06-01 Thread Artur Meinzer
Hi everyone,

I get the following error from time to time:
PHP Fatal error:  SOAP-ERROR: Parsing WSDL: Couldn't load from 
'https://adwords.google.com/api/adwords/cm/v201309/MutateJobService?wsdl' : 
failed to load external entity 
"https://adwords.google.com/api/adwords/cm/v201309/MutateJobService?wsdl";

It's not happening all the time and it happens not only with 
MutateJobService.
Does anyone have a clue? I'm using PHP 5.4.4 with Client-Library 5.2.1

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


How to get account limits?

2011-03-21 Thread Artur Geraschenko
Hello! How to I can get account limit from API AdWords?
I know about limits:

Campaigns: 25 (active)
AdGroups: 2000
AdGroupCriterion: 2000 for each AdGroup

But I can write to adWords support to expand the limits:
Campaigns: 100 (active) and also.

How to I can get this limits?

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

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


Re: How to get account limits?

2011-03-22 Thread Artur Geraschenko
Thanks, but I wondered if I could get them using api?
Because it's not hard limits - they can be increased to account for a
support request

On 22 мар, 17:23, "Anash P. Oommen"  wrote:
> HI Artur,
>
> Some of these limits are documented 
> athttp://adwords.google.com/support/aw/bin/answer.py?hl=en&answer=40907, but
> API doesn't provide a way to retrieve these limits programmatically.
>
> Cheers,
> Anash P. Oommen,
> AdWords API Advisor.

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

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


Re: How to get account limits?

2011-03-22 Thread Artur Geraschenko
Sorry, I dont read to end your post. No more questions

On 22 мар, 17:37, Artur Geraschenko  wrote:
> Thanks, but I wondered if I could get them using api?
> Because it's not hard limits - they can be increased to account for a
> support request
>
> On 22 мар, 17:23, "Anash P. Oommen"  wrote:
>
> > HI Artur,
>
> > Some of these limits are documented 
> > athttp://adwords.google.com/support/aw/bin/answer.py?hl=en&answer=40907, but
> > API doesn't provide a way to retrieve these limits programmatically.
>
> > 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


Disapproval trademark list

2011-04-18 Thread Artur Geraschenko
How can I get disapproval trademark list from API AdWords?

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

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


Re: Disapproval trademark list

2011-04-18 Thread Artur Geraschenko
Thank you!

On 18 апр, 14:18, "Anash P. Oommen"  wrote:
> Hi Artur,
>
> This list is not available through AdWords API, but it is possible to check
> if an ad violates a policy or 
> trademark.http://code.google.com/p/google-api-adwords-php/source/browse/trunk/e...shows
> how this can be done.
>
> 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


Adding campaign's additional link with api 2011 ?

2011-04-18 Thread Artur Geraschenko
Hello! I found this topic when I searched info about additional links
in ads:
https://groups.google.com/group/adwords-api/browse_thread/thread/a2403cb18395e302/95996eed05013ca7?lnk=gst&q=additional+link#95996eed05013ca7

This informations is actual?

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


UNEXPECTED_INTERNAL_API_ERROR

2012-12-13 Thread Artur Meinzer
I am updating keywords every day using MutateJobService and it's all 
working fine, but today I'm getting this error. I don't think the fault is 
on my side. Creating the job takes longer than usual and getting the result 
causes the error. There are only 10 Keywords in the job.
JobId is 4198443674418301891. I would appreciate any help.

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

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





Re: UNEXPECTED_INTERNAL_API_ERROR

2012-12-13 Thread Artur Meinzer
Seems to be working now.

Am Donnerstag, 13. Dezember 2012 11:55:11 UTC+1 schrieb Artur Meinzer:
>
> I am updating keywords every day using MutateJobService and it's all 
> working fine, but today I'm getting this error. I don't think the fault is 
> on my side. Creating the job takes longer than usual and getting the result 
> causes the error. There are only 10 Keywords in the job.
> JobId is 4198443674418301891. I would appreciate any help.
>

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

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





Fault occured while processing

2013-01-30 Thread Artur Meinzer
Hi,

I was trying to delete a negative keyword, but it didn't work. I always get 
this error.
Here is the soap response:

HTTP/1.1 500 Internal Server Error
Content-Type: text/xml; charset=UTF-8
Content-Encoding: gzip
Date: Wed, 30 Jan 2013 14:24:45 GMT
Expires: Wed, 30 Jan 2013 14:24:45 GMT
Cache-Control: private, max-age=0
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
X-XSS-Protection: 1; mode=block
Content-Length: 320
Server: GSE


http://schemas.xmlsoap.org/soap/envelope/";>
  
https://adwords.google.com/api/adwords/cm/v201209";>
  0004d482459813900ae53a5905ab
  AdGroupCriterionService
  mutate
  0
  113
  1

  
  

  soap:Server
  Fault occurred while processing.

  


Can anyone tell me what the problem is?

Thanks in advance

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

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

--- 
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.




Network targeting of campaigns and ad groups

2011-05-25 Thread Artur Geraschenko
Hello! How I can set included and excluded sites where ads from
AdGroup showing in network targeting API?

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

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


Re: Network targeting of campaigns and ad groups

2011-05-25 Thread Artur Geraschenko
Thanks. I found:

http://code.google.com/p/google-api-adwords-php/source/browse/trunk/examples/v201101/AddAdGroupCriteria.php

On 25 май, 17:18, Artur Geraschenko  wrote:
> Hello! How I can set included and excluded sites where ads from
> AdGroup showing in network targeting API?

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


Get allowed size of image ads in placements list (TargetingIdeaService)

2011-08-22 Thread Artur Geraschenko
Hello! How I can take subject info?

My code:

// Create seed keyword.
$keyword = new Keyword();
$keyword->text = 'internet';
$keyword->matchType = 'BROAD';


// Create selector.
$selector = new TargetingIdeaSelector();
$selector->requestType = 'IDEAS';
$selector->ideaType = 'PLACEMENT';
//$selector->requestedAttributeTypes = array();

$selector->requestedAttributeTypes = array(
'APPROX_CONTENT_IMPRESSIONS_PER_DAY', 'FORMATS', 
'IDEA_TYPE',
'IN_STREAM_AD_INFO', 'PLACEMENT', 'PLACEMENT_CATEGORY',
'PLACEMENT_NAME', 'PLACEMENT_TYPE', 'SAMPLE_URL'
);

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

// Create related to keyword search parameter.
$relatedToKeywordSearchParameter = new
RelatedToKeywordSearchParameter();
$relatedToKeywordSearchParameter->keywords = array($keyword);

$selector->searchParameters =
array($relatedToKeywordSearchParameter);

// Get related keywords.
$page = $targetingIdeaService->get($selector);





I do this, but returned data in not contains necessary information:




TargetingIdeaPage Object
(
[totalNumEntries] => 799
[entries] => Array
(
[0] => TargetingIdea Object
(
[data] => Array
(
[0] => Type_AttributeMapEntry Object
(
[key] => SAMPLE_URL
[value] => StringAttribute Object
(
[value] => 
http://www.jango.com/music
[AttributeType] =>
StringAttribute
 
[_parameterMap:Attribute:private] => Array
(
[Attribute.Type]
=> AttributeType
)

)

)

[1] => Type_AttributeMapEntry Object
(
[key] => PLACEMENT_TYPE
[value] => PlacementTypeAttribute
Object
(
[value] => SITE
[AttributeType] =>
PlacementTypeAttribute
 
[_parameterMap:Attribute:private] => Array
(
[Attribute.Type]
=> AttributeType
)

)

)

[2] => Type_AttributeMapEntry Object
(
[key] => FORMATS
[value] =>
AdFormatSpecListAttribute Object
(
[value] => Array
(
[0] =>
AdFormatSpec Object
(
[format]
=> IMAGE
)

[1] =>
AdFormatSpec Object
(
[format]
=> TEXT
)

)

[AttributeType] =>
AdFormatSpecListAttribute
 
[_parameterMap:Attribute:private] => Array
(
[Attribute.Type]
=> AttributeType
)

)

)

[3] => Type_AttributeMapEntry Object
(
[key] => PLACEMENT_NAME
[value] => StringAttribute Object
(
[value] => jango.com
[At

Bulk Download width API

2011-08-30 Thread Artur Meinzer
Is it possible to download the data with a bulk job. I guess the 
BulkMutateJobService is only for uploading data. It would be nice if there 
was a solution to download in the same way, but I don't know if or how I 
could do this with the BulkMutateJobService. Thanks in advance.

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

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


SOAP-Error

2011-09-05 Thread Artur Meinzer
No matter what I do, I'm getting the following error message: SOAP-ERROR: 
Parsing WSDL: Couldn't load from 
'https://adwords-sandbox.google.com/api/adwords/cm/v201008/CampaignService?wsdl'
 
: failed to load external entity 
"https://adwords-sandbox.google.com/api/adwords/cm/v201008/CampaignService?wsdl";
Is there a sandbox reset going on? Or is it something different? Thanks in 
advance.

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

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


Aw: Re: SOAP-Error

2011-09-06 Thread Artur Meinzer
I solved the problem. The reason was, that openssl was not activated in my 
xampp.

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


Operation Streams

2011-09-06 Thread Artur Meinzer
I'm trying to split the parts into 25 operation streams trusting that the 
operation streams would work at the same time and not one by one. Is this 
true?
But this try fails as I'm getting the following error:
Unmarshalling Error: cvc-complex-type.3.2.2: Attribute 'id' is not allowed 
to appear in element 'ns1:scopingEntityId'. 

I found this part in the log file:


  
CUSTOMER_ID
6901351638
  

the id="ref1" only appears in the first operation stream. Where does it come 
from and how can I remove it?
Thanks in advance.

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

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


Aw: Re: Operation Streams

2011-09-06 Thread Artur Meinzer
There is no request id in the request log.
All I can give to you is this:
Time: Sep 06 2011 10:11:11
email: artur.mein...@googlemail.com
effectiveUser: 6901351638

Hope this helps. I'm using the sandbox. Thanks

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

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


Transfer time

2011-09-09 Thread Artur Meinzer
A few days ago I transfered about 8 keywords into the sandbox which were 
splitted into 8 parts and it takes nearly 35 hours. Is the production 
environment faster? Furthermore there is the possibility to split each part 
into 25 operation streams. I tried to do this, but the following error 
occured:

Unmarshalling Error: cvc-complex-type.3.2.2: Attribute 'id' is not allowed 
to appear in element 'ns1:scopingEntityId'. 

Would it be faster, when I use the 25 operation streams in each part?

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

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


Re: Transfer time

2011-09-12 Thread Artur Meinzer
It's just a question if it is faster, when I use multiple operation streams. 
Do the operation streams operate simultaneously or one after another? It's 
not worth trying, If they do not operate simultaneously.

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

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


Re: Transfer time

2011-09-13 Thread Artur Meinzer
Thanks for this answer. That was the answer I was looking for. Until now I 
was using the customer Id as scoping entity. If I use the campaign Id it 
would be much faster I guess. Even if I split them only into parts with one 
operation stream per part?

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

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


Re: Re: Operation Streams

2011-09-14 Thread Artur Meinzer
Hi David,

yes, I'm using the php client library. Is there a problem in the library?

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


PAYLOAD_STORE_UNAVAILABLE

2011-09-14 Thread Artur Meinzer
I was just trying to create new campaigns in the sandbox with a bulk mutate 
job. The job has status "COMPLETED", but I receive an error.

Bulk mutate job with id "3318741705663119838" has status "COMPLETED".
[BulkMutateJobError.PAYLOAD_STORE_UNAVAILABLE @ ]

Is there a limit on campaigns in the sandbox?

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


WORKFLOW_FAILURE

2011-09-16 Thread Artur Meinzer
In the last three days I encoutered numerous failures in the sandbox. They 
always say "WORKFLOW_FAILURE".

One of them was this:
requestId: 0004ad09933586000a0d9c1561bc

Can you check that?

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

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


Re: PAYLOAD_STORE_UNAVAILABLE

2011-10-07 Thread Artur Meinzer
Hi,

it didn't work when I tried it again and I think I reached the limit of 
campaigns. I tried it again at an other account and there it worked. I know 
that the sandbox is only for testing, but I don't have enough room to test. 
The 5 accounts are full of campaigns.

Thanks anyway for your 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


Re: Re: Operation Streams

2011-10-07 Thread Artur Meinzer
Hi Eric,

I think I found out what the problem was. I tried to split the parts into 
operation streams but I always used the same scoping entity for each 
operation stream. It was the scoping entity of the account. Now I'm using 
the campaign as scoping entity and splitting the parts into operation 
streams grouped to the campaigns.

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


INVALID_ID operations[0].operand.ad.id

2012-03-05 Thread Artur Meinzer
Hello Adwords Team,

I have a problem with some Ads which I wanted to upload. It always says 
INVALID_ID operations[0].operand.ad.id. I'm using the simple mutate job 
service and the new client library 3.0.0 for PHP. There is a batch of 50 
operations (25 ADD, 25 SET) which always fails. Last week I've done more 
than one million operations and they all worked fine. I would appreciate 
it, if someone could check this. 
Here is one request ID: 0004ba7c0051c6e90a345ea871b9

Thanks in advance

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

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


PolicyViolationError

2012-06-18 Thread Artur Meinzer
I was trying to upload some new ads and there are some ads which have 
policy violation errors. So I add exemption requests on the ads with the 
error. It works for most of them, but sometimes it fails with the following 
message: [PolicyViolationError.POLICY_ERROR @ 
operations[0].operand.ad.description2]. In this case the violating text is 
Viagrande, which is a place in Italy. The external policy descriptions says 
"This ad requires review before it can run", but why does the exemption 
request not work?

Thanks in advance,
Artur

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


Keywords disappear

2012-06-19 Thread Artur Meinzer
I was trying to delete some keywords and I got an error which says 
"INVALID_ID". It seems that these keywords don't exist in the live account, 
but in my database they exist. They were downloaded some time ago using the 
keywords performance report and I update them every day. How can this be? I 
have a group in the database which has 83 keywords, but in the live account 
there are only 42 and no deleted keywords.

Thanks in advance,
Artur

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

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


Re: Reports without the Totals line

2012-06-19 Thread Artur Meinzer
Hi Daniel,

I'm also using the LOAD DATA feature to import the reports. A simple way is 
to import the data and afterwards delete the total line. Works good for me.

Artur

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


duplicate keywords

2012-07-31 Thread Artur Meinzer
I have set a unique key in my database to keywordId + AdgroupId. It all 
works fine, but I wonder why I have some duplicate keywords in some groups 
with different keywordIds.
For example:
3042089426, ferienwohnung trieste (Broad), enabled
25883905881, ferienwohnung trieste (Broad), deleted

I thought one KeywordId stands for a keyword text + match type.

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


Changing keyword to negative

2012-09-11 Thread Artur Meinzer
Hi,

I wanted to change a biddable keyword to a negative keyword, but if I try 
it with ADD I get the following error:
CANNOT_TARGET_AND_EXCLUDE
So I tried it with SET but then I get this error:
CANT_UPDATE_NEGATIVE
Is there a way to change the keyword to negative? I think it would work 
when I first delete the keyword and then add it as negative. Is there no 
way to do it in one operation?
The ID of the keyword should be the same, right?

Thanks in advance

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

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


Re: Changing keyword to negative

2012-09-13 Thread Artur Meinzer
Hi Margaret,

what you said is what I also thought some time ago. The Keywords that I 
have changed to negative are not listed as deleted in the account and I 
know that they had clicks and in fact they have the same ID as before. I 
think the historical data will show if I change them to biddable again. So 
that's the proof that the keywords are the same when I change them to 
negative. Theoretically it should be possible to do it in one operation.

Am Dienstag, 11. September 2012 09:20:55 UTC+2 schrieb Artur Meinzer:
>
> Hi,
>
> I wanted to change a biddable keyword to a negative keyword, but if I try 
> it with ADD I get the following error:
> CANNOT_TARGET_AND_EXCLUDE
> So I tried it with SET but then I get this error:
> CANT_UPDATE_NEGATIVE
> Is there a way to change the keyword to negative? I think it would work 
> when I first delete the keyword and then add it as negative. Is there no 
> way to do it in one operation?
> The ID of the keyword should be the same, right?
>
> Thanks in advance
>

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

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


Create video media through API

2017-04-17 Thread Artur Mullakhmetov
Hello,

is there a possibility to create video media (from file or youtube link) 
through Adwords API?

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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f0b937f4-7fa2-44fc-8fe2-71da1f468506%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Create video media through API

2017-04-17 Thread Artur Mullakhmetov
Hello,

is there a possibility to create video media from file or youtube link 
through Adwords API? 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/45013802-baf1-434d-acd1-7ce631b63bd8%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


CUSTOMER_NOT_ALLOWLISTED_FOR_THIS_FEATURE when creating customer account

2022-04-19 Thread Artur Rossi
Hello

I'm trying to create a customer account linked to my manager account and i 
get the following error:

{"error_code":{"not_allowlisted_error":"CUSTOMER_NOT_ALLOWLISTED_FOR_THIS_FEATURE"},"message":"Customer
 
is not allowlisted for accessing this feature."}

I would like to know what I need to do to be able to create a customer 
account via the Google Ads API

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 
"Google Ads API and AdWords API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/d6d1802b-ba97-40cd-b05f-fd514a09a939n%40googlegroups.com.


insertionText restriction "Can use / between two numbers. For example 4/1 and 0.95/0.45 are valid." ?

2019-09-24 Thread Artur Grossmann
the type AdParam from the AdWords API has, among others, the following 
field: "insertionText".
One of the restrictions says "Can use / between two numbers. For example 4/1
 and 0.95/0.45 are valid." - what kind of values are supposed to be 
represented in the form of "4/1" or "0.95/0.45" ? What does the "/" mean in 
this context?

URL to the AdParam article: 
https://developers.google.com/adwords/api/docs/reference/v201809/AdParamService.AdParam#insertionText
 

kind regards
Artur

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/97308fab-9911-43f9-bc9b-01bcccb3c3a4%40googlegroups.com.


Re: insertionText restriction "Can use / between two numbers. For example 4/1 and 0.95/0.45 are valid." ?

2019-09-26 Thread Artur Grossmann
Hello Peter,

The product experts via the Google Ads Help Community 
<https://support.google.com/google-ads/community> forum directed me towards 
the API forum. So who should I ask? 

Thanks for your time and the response though.

Kind regards
Artur

Am Mittwoch, 25. September 2019 07:18:08 UTC+2 schrieb adsapiforumadvisor:
>
> Hi Artur,
>
> Thank you for your question.
>
> However, this appears to be more of a product related concern. That being 
> said, you can reach out directly to the product experts via the Google 
> Ads Help Community <https://support.google.com/google-ads/community> 
> forum for better guidance regarding this matter.
>
> I hope this helps.
>
> Best regards,
> Peter
> Google Ads API Team
>
> ref:_00D1U1174p._5001UHHlAW:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a55c69ab-4a95-43c0-bdb2-ca0a7b52087b%40googlegroups.com.


Re: insertionText restriction "Can use / between two numbers. For example 4/1 and 0.95/0.45 are valid." ?

2019-10-01 Thread Artur Grossmann
Hello,

yes, this clarified everything. Thank you very much!

Kind regards
Artur

Am Freitag, 27. September 2019 08:58:54 UTC+2 schrieb adsapiforumadvisor:
>
> Hi Artur,
>
> Thank you for your patience.
>
> The "/" is indicated as an allowed character when you wish to represent 
> certain information involving numbers, such as possibly : 
>
>- A representation of a date in the text "Sale ends on {}" wherein the 
>insertion text could be "1/10" to represent October 1st. 
>- It could also be a way to represent scores or reviews such as "Rated 
>{} stars", this time as "4.5/5.0" (4 out of 5) to indicate the rating. 
>
> The two strings above ("1/10" and "4.5/5.0" ) would be considered valid 
> numeric values to provide as insertionText, even though they contain a "/". 
> Since the "/" occurs between two numbers, the whole string is still 
> considered a numeric value for purposes of this API call.
>
> I hope this clarifies your concern.
>
> Best regards,
> Peter
> Google Ads API Team
>
> ref:_00D1U1174p._5001UHHlAW:ref

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/a6ec009c-9f32-4858-8420-09b56e47cb37%40googlegroups.com.


Get country

2019-10-29 Thread Artur Shalumov
Hi.
Ho to get campaign`s country from keyword_view?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/85382fd2-fdba-45f5-b881-ff1242780d4a%40googlegroups.com.


Cost per click

2019-10-31 Thread Artur Shalumov
Hi, in keyword_view i have cost per click 120. How much is it and 
what`s wrong?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b0af5711-22f9-4763-a210-91052f113754%40googlegroups.com.


landing_page_view

2019-12-10 Thread Artur Shalumov
I try to get cost_micros, impressions and clicks from landing_page_view,
but i get only cost_micros, another fields = 0. In report on google`s page
i see all measures. What is the reason and how to get right values?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/CAJN%2BFX%2BXQdoHK5_YcP8OxdAGBqEdpbM2iikXSkoNy0xR%3DBLtRw%40mail.gmail.com.


keyword_view

2019-12-12 Thread Artur Shalumov
I try to get data from keyword view, and i  get response error
error message  Request made: ClientCustomerId: 6494287705, Host: 
googleads.googleapis.com:443, Method: 
/google.ads.googleads.v2.services.GoogleAdsService/Search, RequestId: None, 
IsFault: True, FaultMessage: 502:Bad Gateway
query: ('SELECT segments.date, campaign.id, campaign.name, campaign.labels, 
'
 'ad_group.id, ad_group.name, ad_group.status, campaign.status, 
'
 'ad_group_criterion.status, 
ad_group.labels,campaign.advertising_channel_type, '
 'ad_group_criterion.criterion_id, metrics.conversions_value, '
 'ad_group_criterion.keyword.text, campaign.payment_mode, '
 'ad_group_criterion.keyword.match_type, metrics.conversions, '
 'metrics.impressions, metrics.clicks, metrics.cost_micros, '
 'metrics.average_cpc, segments.ad_network_type, '
 'metrics.average_cpv, metrics.average_cpm, 
metrics.average_cost '
 'FROM keyword_view WHERE segments.date >= "2019-12-09" and 
segments.date < "2019-12-10" '
 'AND ad_group_criterion.type = KEYWORD '
 'ORDER BY segments.date ASC'
 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog:
https://googleadsdeveloper.blogspot.com/
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

You received this message because you are subscribed to the Google
Groups "AdWords API and Google Ads 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 and Google Ads API Forum" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to adwords-api+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/4b7dd9e0-bb28-4611-9861-3a9792e240a0%40googlegroups.com.