DEVELOPER_TOKEN_NOT_APPROVED

2019-12-05 Thread Reza Saddat
how to fixing this error DEVELOPER_TOKEN_NOT_APPROVED, event i want to try 
with test account, but i can't found the account.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d1580bb6-f67f-4626-a06f-7e15dc0c53f3%40googlegroups.com.


Re: Audience shows Zero Size in Audiences Page even though More than 1k data has been pushed to Google

2019-12-05 Thread Rten Marketo
Thanks for you reply. We will try to reach out the product Support Team

On Friday, December 6, 2019 at 1:12:07 AM UTC+5:30, adsapiforumadvisor 
wrote:
>
> Hello,
>
> Thank you for writing to us regarding your concern. As per this 
> 
>  
> document, for privacy purposes, the user list size will show as zero until 
> the list has at least 1,000 members. After that, the size will be rounded 
> to the two most significant digits. If they are uploading 1087 members 
> successfully and are still seeing size zero in the Google Ads UI, I would 
> recommend reaching out to the product support team via help icon on the top 
> right corner of your Google Ads account (once logged in) as they would be 
> the best bet to assist you with your concerns. Feel free to reach out for 
> any API related concerns.
>
> Regards,
> Nikisha Patel, Google Ads API Team
>
>
> ref:_00D1U1174p._5001UODtIU: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/bb237b72-9fb6-49a9-bd93-630004b0930c%40googlegroups.com.


Re: Creating custom affinity audience

2019-12-05 Thread Aekansh Partani


Thanks for your reply.
I used this in PHP and got Call to undefined method 
Google\AdsApi\AdWords\v201809\rm\CustomAffinity::setStreamContext()

$customAffinityService = $adWordsServices->get(sessionBuilder(), 
CustomAffinity::class);

$audience = new CustomAffinity();
$audience->setStatus(CustomAffinityStatus::ENABLED);
$audience->setName("Custom Created Intent");
$audience->setType(CustomAffinityType::CUSTOM_INTENT);

$customAffinityOperation  = new CustomAffinityOperation();
$customAffinityOperation->setOperand($audience);
$customAffinityOperation->setOperator(Operator::ADD);

$operations = [];
$operations[] = $customAffinityOperation;
$result = $customAffinityService->mutate($operations);



On Thursday, December 5, 2019 at 11:33:22 PM UTC+5:30, adsapiforumadvisor 
wrote:
>
> Hello Aekansh, 
>
> I'm afraid, we do not have the PHP code sample to create Custom Affinity 
> audience. Please find the code snippet in Java as a reference.
>
> CustomAffinityServiceInterface listService = adWordsServices.get(session, 
> CustomAffinityServiceInterface.class);
> CustomAffinity audience = new CustomAffinity();
> audience.setStatus(CustomAffinityStatus.ENABLED);
> audience.setName("Custom Created Intent_47");
> audience.setType(CustomAffinityType.CUSTOM_INTENT);
>
> CustomAffinityOperation operation = new CustomAffinityOperation();
> operation.setOperand(audience);
> operation.setOperator(Operator.ADD);
>
> CustomAffinityOperation[] operations = new CustomAffinityOperation[] 
> {operation};
> CustomAffinityReturnValue result = listService.mutate(operations);
>
> You may refer this and try it out in PHP. Let me know if you have any 
> issues, I'll be happy to take a look.
>
> Thanks,
> Bharani, Google Ads API Team
>
>
> ref:_00D1U1174p._5001UODtta: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/7467d24f-fca5-4ff6-b455-70270992660e%40googlegroups.com.


Re: implement adwords api php (error 500)

2019-12-05 Thread Reza Saddat
yes i understand what do you mean, but i have to use googleads-php-lib in 
my project, then i was following step in official google adwords, step auth 
i have done and successfully
but when i go to the next step, like try example getcampaign it can't, and 
response 500
i try to trace the code where the problem then i found what i said before 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/722a9f2a-6063-4ba0-8bca-94c73e17bffa%40googlegroups.com.


Is there any API to ACK the call recording term and policy?

2019-12-05 Thread guofu Zhong
Hi team,

we are building an agency platform for the customer to manage AdWords ads.
But we are facing this problem that the customer have to manually accept 
call recording terms and policies.
I was just wondering get confirm if there is API to accept the call 
recording term and policy.

Thanks,
Guofu

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/3f893dc0-9f3f-4b7d-b284-a0157fea1db0%40googlegroups.com.


Get Report data for a date range on Per day basis

2019-12-05 Thread Pradeep Datla
Hi,

I would like to plot a graph (CAMPAIGN_PERFORMANCE_REPORT) of impressions 
for a selected date range. I was able to get total number of impressions 
for a date range. But to plot a graph. i need daily impressions for a 
period of time.

How would i get that data using api for a specific campaign id? 

[image: impressions.JPG]


Thank You,
Pradeep Datla.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/d06dafa6-03a5-4762-8ce8-cd65da1f45e6%40googlegroups.com.


429 Resource has been exhausted (e.g. check quota) when adding keywords to a shared set

2019-12-05 Thread andryushka x
Hi -- I am getting an error 

google.api_core.exceptions.ResourceExhausted: 429 Resource has been 
exhausted (e.g. check quota).

I am trying to add keywords to a negative keyword list. Specifically, it is 
failing when I do a mutate_shared_criteria operation:

resp = self._shared_criterion_service.mutate_shared_criteria(
self._customer_id, shared_criteria_ops
)

I find this a bit odd because I am not adding that many -- the number of 
keywords I am adding is under 10K

Where can I check what our quota is? And how can I go about requesting 
more? We are looking at trying do something like add 100K keywords daily. 

Any advice on this would be most appreciated, thank you!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/13cb9ad9-d242-4320-800e-a4d33b74b294%40googlegroups.com.


RE: How to get a campaign report ? An error occurred

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hi,

This issue appears to be more client library related. I'd recommend reaching 
out to the client library owners and create an issue here.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UODwqS: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/8XFID0Q224S600-HpkXL1LTwuf_Eto9Y9UUg%40sfdc.net.


RE: OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hi,

Thanks for reaching out to us. I see that you are trying to mutate a Universal 
App Campaign. As of August 6, 2019, UniversalAppCampaignSetting was replaced 
with UniversalAppCampaignInfo in AdWords API. All specific ad-level details 
will be added in the new UniversalAppAd for AdWords API. For more details, 
please see this blog post. Let me know if you have any other questions.

Thank you,
Bharani, Google Ads API Team
ref:_00D1U1174p._5001UODvZf: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/RFwRF0Q224CL00Sj1ep285QNGL19bxkRsjAw%40sfdc.net.


RE: Could not find policy 'pick_first'.

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hello Rui,

Thanks for reaching out. The error seems to be related to the client libraries 
and not the API. You might find this post on the Github Issue Tracker useful to 
mitigate the error faced on your end. If not, I would recommend posting your 
concern on the Github Issue Tracker as our client libraries team will be able 
to assist you better with your concerns. Let us know if you have any API 
related concerns.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UODtn0: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/2IAAN0Q222X000pe1A9XhcSCiEfXd7yCmxNw%40sfdc.net.


RE: implement adwords api php (error 500)

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hi Reza,

I understand you're looking to convert the report data in JSON format. You may 
refer to the solution shared in our Github Issue Tracker which might be 
helpful. If you're already converting the data to JSON format and receiving the 
error 500, it usually indicates that there is a temporary problem with the 
server; if this error occurs, retry the request after a few moments. Let me 
know if you have any further questions.

Thanks,
Bharani, Google Ads API Team
ref:_00D1U1174p._5001UODtoh: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/HkyPI0QO00y6gAX3j8SYWzTSIzXJ_wAw%40sfdc.net.


How to get a campaign report ? An error occurred

2019-12-05 Thread 华俊
$options = (new ArgumentParser())->parseCommandArguments([
ArgumentNames::CUSTOMER_ID => self::CUSTOMER_ID
]);
var_dump($options);exit;

Page access errors. I have specified   const CUSTOMER_ID = '9572456772';
[0] InvalidArgumentException in 
/google-ads-php/vendor/ulrichsg/getopt-php/src/Option.php 
line 242
Option mode must be one of GetOpt::NO_ARGUMENT, GetOpt::OPTIONAL_ARGUMENT, 
GetOpt::REQUIRED_ARGUMENT and GetOpt::MULTIPLE_ARGUMENT

How to solve? 

thanks.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/e5c3ec45-f93d-44d6-9f09-b822f8f56db9%40googlegroups.com.


Re: Renamed status for Campaign and AdGroup name

2019-12-05 Thread 'Mark Trapani' via AdWords API and Google Ads API Forum
Hello,

I would like to monitor changes made to the tracking templates within an 
account. Is this possible through the CustomerSyncService.get() 
,
 
and if so, how granular can I go?

Thanks


On Friday, 4 October 2019 16:07:06 UTC+2, adsapiforumadvisor wrote:
>
> Hello,
>
> You can use the CustomerSyncService.get() 
> 
>  to 
> get changes in your campaigns and accounts. Also, you may refer to this 
> sample 
> code 
> 
>  on 
> how to use this service to get the changes in your account during past 24 
> hours. Please note, this service is not as detailed as the 'Change History' 
> available in the UI. Let us know if there is anything else related to API 
> that I could help you with.
>
> Regards,
> Nikisha Patel, Google Ads API Team
>
>
> ref:_00D1U1174p._5001UKM1wS: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/a4f61ec3-9dfa-4884-bafa-03a21ae667be%40googlegroups.com.


RE: Audience shows Zero Size in Audiences Page even though More than 1k data has been pushed to Google

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hello,

Thank you for writing to us regarding your concern. As per this document, for 
privacy purposes, the user list size will show as zero until the list has at 
least 1,000 members. After that, the size will be rounded to the two most 
significant digits. If they are uploading 1087 members successfully and are 
still seeing size zero in the Google Ads UI, I would recommend reaching out to 
the product support team via help icon on the top right corner of your Google 
Ads account (once logged in) as they would be the best bet to assist you with 
your concerns. Feel free to reach out for any API related concerns.

Regards,
Nikisha Patel, Google Ads API Team
ref:_00D1U1174p._5001UODtIU: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/x8jJm0Q221DL00KwPc3WoZQFO-9nH9ur7KKw%40sfdc.net.


Re: ADGROUP_PERFORMANCE_REPORT: no data returned in AdWords API

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hi Wenbin,

Thank you for providing that information. I see that all of your campaigns are 
App Campaigns. Unfortunately, the AdGroup Performance Report does not support 
App Campaigns. See here for the list of supported reports.

Regards,
Mitchell
Google Ads API Team
ref:_00D1U1174p._5001UODniC: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/YI1hl0Q220I900A6Zk7RA2SaiWgiqMYWvZvg%40sfdc.net.


RE: Google Product Alert Script

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hi Moosa,

On this forum we address technical issues specific to Google Ads API/AdWords 
API. I would recommend that you post this concern on the Google Ads Scripts 
forum as they are better equipped to address this issue.

Thanks,
Bharani, Google Ads API Team
ref:_00D1U1174p._5001UODuce: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/yO6P80Q21XIY00PLxywkkDSFqiKT7FCtcf3Q%40sfdc.net.


RE: Creating custom affinity audience

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hello Aekansh,

I'm afraid, we do not have the PHP code sample to create Custom Affinity 
audience. Please find the code snippet in Java as a reference.

CustomAffinityServiceInterface listService = adWordsServices.get(session, 
CustomAffinityServiceInterface.class);
CustomAffinity audience = new CustomAffinity();
audience.setStatus(CustomAffinityStatus.ENABLED);
audience.setName("Custom Created Intent_47");
audience.setType(CustomAffinityType.CUSTOM_INTENT);

CustomAffinityOperation operation = new CustomAffinityOperation();
operation.setOperand(audience);
operation.setOperator(Operator.ADD);

CustomAffinityOperation[] operations = new CustomAffinityOperation[] 
{operation};
CustomAffinityReturnValue result = listService.mutate(operations);

You may refer this and try it out in PHP. Let me know if you have any issues, 
I'll be happy to take a look.

Thanks,
Bharani, Google Ads API Team
ref:_00D1U1174p._5001UODtta: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/qf5ek0Q21WT2008NQuDmhlTYuGVNFKgeFF6w%40sfdc.net.


Re: How to get correct number of video quratile views

2019-12-05 Thread Zweitze
Hi,

I struggled with this some time ago. Later someone asked the same question, 
and the answer there best describes my findings: 
https://groups.google.com/d/msg/adwords-api/KLLiGbhnHAA/EnUhS7_LBgAJ

To summarize (but do read previous discussion):
1. Video campaigns consist of two types of ads, InStream ads and 
VideoDiscovery ads. VideoDiscovery is search in YouTube, InStream is an ad 
played immediatly before a different video. Both ad types have impressions, 
but they have completely different meaning.
2. For your type of calculations, you need to filter on InStream ads, as 
you only want their impressions.
3. In Google Ads Web UI, you can do this by segmenting on "View Type" - 
then you can do calculations by hand, and validate your calculation method. 
Unfortunately, Google AdWords API does NOT support this segment. Maybe 
Google Ads API beta does support this.
4. Alternatively, if that's an option, your calculation will be correct 
when you stop all VideoDiscovery ads - or, have less than 1 impression on 
these ads combined.
5. Another alternative is requesting the same results on ADGROUP level, and 
filter on AdGroupType. Only groups with AdGroupType of YOUTUBE_WATCH should 
be included.

So basically, we're waiting on Google to add segment "View Type" to 
CAMPAIGN_PERFORMANCE_REPORT. I'm waiting 2.5 years now. But the AdGroup 
workaround works pretty nice.


Hope this helps!



On Monday, December 2, 2019 at 9:31:25 AM UTC+1, Damir Murzagulov wrote:
>
> Hi all, please help to figure out the next issue
>
> I try to calculate the number when the video was viewed at 50%.  Adwords 
> API gives the rate 
> VideoQuartile50Rate
> Description: Percentage of impressions where the viewer watched 50% of 
> your video.
>
> So, I make a backward calculation of 
> VideoQuartile50 Views=VideoQuartile50Rate*Impressions 
>
> But the problem when I compare total values from API and my calculation 
> numbers does not match. 
>
> I prepared some example here 
> https://docs.google.com/spreadsheets/d/1L0I1Knj07KX1_0K1HKAvxme8N0eeVRcqbmGE0gqWI7o/edit#gid=0
>
> There, according to my calculation, I get total 
> VideoQuartile50 Views=60094327.39
>
> But if I would use for calculation total numbers from API, I get 
> VideoQuartile50 Views=48.67%*328498405=159880173.7
>
> Why it is happening? I am puzzled. 
>
>
>  
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/423c1417-3a00-4f06-ad94-c7002c3459e7%40googlegroups.com.


OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE

2019-12-05 Thread kz test
  universal_app_campaign['settings'] = [
  # Set the campaign's assets and ad text ideas. These values will
  # be used to generate ads.
  {
  'xsi_type': 'UniversalAppCampaignSetting',
  'appId': 'com.labpixies.colordrips',
  'appVendor': 'VENDOR_GOOGLE_MARKET',
  'description1': 'A cool puzzle game',
  'description2': 'Remove connected blocks',
  'description3': '3 difficulty levels',
  'description4': '4 colorful fun skins',
  # Optional: You can set up to 20 image assets for your campaign.
  # See upload_image.py for an example on how to upload images.
  #
  # 'imageMediaIds': [INSERT_IMAGE_MEDIA_ID(s)_HERE]
  }
  ]

  # Optimize this campaign for getting new users for your app.
  universal_app_campaign_setting = universal_app_campaign['settings'][0]
  universal_app_campaign_setting['universalAppBiddingStrategyGoalType'] = (
  'OPTIMIZE_FOR_INSTALL_CONVERSION_VOLUME')
Error summary: {'faultMessage': 
'[OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE @ 
operations[0].operand.settings]', 'requestId': 
'000598f7bed8104a0a37ac17670eb454', 'serviceName': 'CampaignService', 
'methodName': 'mutate', 'operations': '1', 'responseTime': '191'}
Traceback (most recent call last):
  File 
"C:\Users\user\AppData\Local\Programs\Python\Python36\lib\site-packages\googleads\common.py",
 
line 992, in MakeSoapRequest
*packed_args, _soapheaders=soap_headers)['body']['rval']
  File 
"C:\Users\user\AppData\Local\Programs\Python\Python36\lib\site-packages\zeep\proxy.py",
 
line 45, in __call__
kwargs,
  File 
"C:\Users\user\AppData\Local\Programs\Python\Python36\lib\site-packages\zeep\wsdl\bindings\soap.py",
 
line 130, in send
return self.process_reply(client, operation_obj, response)
  File 
"C:\Users\user\AppData\Local\Programs\Python\Python36\lib\site-packages\zeep\wsdl\bindings\soap.py",
 
line 195, in process_reply
return self.process_error(doc, operation)
  File 
"C:\Users\user\AppData\Local\Programs\Python\Python36\lib\site-packages\zeep\wsdl\bindings\soap.py",
 
line 299, in process_error
detail=fault_node.find("detail"),
zeep.exceptions.Fault: 
[OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE @ 
operations[0].operand.settings]

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "add_1.py", line 213, in 
main(adwords_client)
  File "add_1.py", line 114, in main
campaigns = campaign_service.mutate(operations)['value']
  File 
"C:\Users\user\AppData\Local\Programs\Python\Python36\lib\site-packages\googleads\common.py",
 
line 1004, in MakeSoapRequest
e.detail, errors=error_list, message=e.message)
googleads.errors.GoogleAdsServerFault: 
[OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE @ 
operations[0].operand.settings]

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/5752ddd8-c8d9-4abd-8962-f72c4d1252c6%40googlegroups.com.


Re: How to get correct number of video quratile views

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hi Will,

The VideoQuartile50Rate should return as a double. The value represents the 
percentage of viewers that watched at least 50% of the video. I can have a look 
at your report definition, results and UI so I can see where the discrepancy is 
through reply privately to author.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UODb2E: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/xj6os0Q21THZ00vBpuNrZaQZ610rhdUGfsEg%40sfdc.net.


Offline Click Conversions not being recorded.

2019-12-05 Thread Brandon Bronisz
I'm testing the Adwords PHP SDK with uploading offline click conversions 
and I'm not able to get the conversions to be recorded in AdWords. I'm not 
getting any sort of error message in the response... I've read that there's 
no guarantee a conversion will be recorded even if you get a successful 
response. So a few questions that I have are:

1. The response returns a request ID. Is there a way to use this requestId 
and gain any additional information that may indicate why the conversion 
wasn't recorded?
2. Are there any other recommendations that would help narrow down what's 
causing this?  

I've made a number of tests with different solutions (which I'll list 
below) and I haven't had any luck. 

- Used different GCLIDs
- Checked that the timestamps between the date of the gclid and click are 
correct
- Verified authentication tokens

Also, I would like to point out that I am using the exact same 
configuration for another action without any problems. the configuration is 
identical, which leads me to believe that this is related to the conversion 
data (amount, timestamps ect...).



-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/29010610-b084-460d-8dc6-8a9f06cc4a31%40googlegroups.com.


RE: Exceeding 1,000 GET requests quota/day

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hi Christine,

Thanks for reaching out. Unlike daily operations, the limits on get requests do 
not vary by access level; all developer tokens, including those with Standard 
Access, are limited to 1,000 get requests per day. Unlike search requests, get 
requests are expensive because all attribute data is retrieved. Use search 
instead of get whenever possible. Search requests are not considered to be the 
same as get requests, even though both are used to retrieve data. Therefore, 
search requests are only subject to daily operation limits. You could refer to 
this code example on how to issue the search request. Please let us know if you 
have any other questions.

Thanks and regards,
Xiaoming, Google Ads API Team
ref:_00D1U1174p._5001UODsjn: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/Rnxpr0Q21QKY00xHneHCfcRbu58aoXi4m6Gg%40sfdc.net.


Google Product Alert Script

2019-12-05 Thread Moosa Basar
Hi, 

I am wanting some assistance whereby I can be alerted of a bid lets say 
higher that X amount by using adwords scripts at product'item ID level fro 
shopping campaigns. 

I have one working script for search campaigns at keyword level but i need 
one for shopping campaigns. 

can anyone provide any help on this. 

Many thanks in advance.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/88da3f42-32cb-47a9-aa2a-d5f895065769%40googlegroups.com.


RE: Connect to CloudSQL from Ads Script

2019-12-05 Thread Google Ads API Forum Advisor Prod
Hi Robert,

Glad you were able to resolve your issue. Feel free to reach out to our team 
for any Google Ads API related questions.

Regards,
Anthony
Google Ads API Team
ref:_00D1U1174p._5001UODrUa: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/OwuN40Q21MXO001vEm0x2BSkKchc7_80Grxw%40sfdc.net.


Creating custom affinity audience

2019-12-05 Thread Aekansh Partani
Is there any example on how can we create custom affinity audience using 
Adwords API using PHP?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/706c429d-d23a-4822-8f16-28fcb7efef7d%40googlegroups.com.


Re: TARGETING_SETTING_CONTAINS_INVALID_CRITERION_TYPE_GROUP - Update campaign

2019-12-05 Thread hüseyin Armağan
Thank you , Mitchell

4 Aralık 2019 Çarşamba 19:31:18 UTC+3 tarihinde adsapiforumadvisor yazdı:
>
> Hi,
>
> Thank you for reaching out. You must follow the example here  
> to
>  
> set the TargetingSettings. When you update the targeting settings, you must 
> specify an exhaustive list of all targeting settings you want; there is no 
> way to just specify a single new targeting setting. To do this, you must 
> first fetch the existing list of targeting settings before you attempt your 
> update, and make sure you include all the existing ones along with the new 
> one you want to add.
>
> Regards,
> Mitchell
> Google Ads API Team
>
>
> ref:_00D1U1174p._5001UODiem: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/2bad842f-9ee2-427d-8437-8f23c188c874%40googlegroups.com.


implement adwords api php (error 500)

2019-12-05 Thread Reza Saddat


hey everyone, i need some help for my case


first i can trace error to deep then before...

in my case is, i can't following next step in example for using report 
download or i want to show data with json type

[image: Screen Shot 2019-12-05 at 16.57.30.png]

let see in my code, i use slim framework for engine create API...
but in last word i try to dump when i call ReportDownloader but i get error 
500.
can anyone help me? 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a83c7a39-2af5-4189-80a5-21cdd4f97eed%40googlegroups.com.


Could not find policy 'pick_first'.

2019-12-05 Thread Rui Zhang
Hello there:
  I used listAccessibleCustomers from google ads Api, but I got an 
error, it was strange.
the code is:
String queryCustomSql = "SELECT customer_client.id, 
customer_client.descriptive_name,
 
customer_client.client_customer,customer_client.currency_code,customer.auto_tagging_enabled
 
FROM  customer_client";
GoogleAdsVersion latestVersion = 
googleAdsClient.getLatestVersion();
CustomerServiceClient customerService = 
latestVersion.createCustomerServiceClient();
GoogleAdsServiceClient googleAdsServiceClient = 
latestVersion.createGoogleAdsServiceClient();
ListAccessibleCustomersResponse response = 
customerService.listAccessibleCustomers(ListAccessibleCustomersRequest.newBuilder().build());
the error is:
   java.lang.IllegalStateException: Could not find policy 
'pick_first'. Make sure its implementation is either registered to 
LoadBalancerRegistry or included in 
META-INF/services/io.grpc.LoadBalancerProvider from your jar files.

i need help, Thanks you.


-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/0b37aa60-120c-4e0c-b464-b4321a69d462%40googlegroups.com.


Audience shows Zero Size in Audiences Page even though More than 1k data has been pushed to Google

2019-12-05 Thread Rten Marketo

Hi Team,

Currently one of our customer has complaining that their Audience size 
shows zero when they have pushed 1087 records . We can see that it has been 
pushed successfully through Marketo platform. It is frequent for them.

Audience ids are below
Estat List - 11\22 - 883488270 

IPD Marketo Estat -. 869636668



Let me know if you need any more info.

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/735b75bc-0985-46ea-b57c-3dcfb1e08f63%40googlegroups.com.