Re: Scope has changed from [...] to [...]

2019-09-08 Thread jia Jimmy
Thanks for your replying first.

I'm trying to generate my OAuth2 credentials and I want get login-user 
profile at the same time.So I think the scopes should be like  


 [ https://www.googleapis.com/auth/userinfo.email,   
https://www.googleapis.com/auth/adwords,  
https://www.googleapis.com/auth/userinfo.profile ]

Am I right?


在 2019年9月9日星期一 UTC+8上午11:11:29,adsapiforumadvisor写道:
>
> Hi,
>
> Thank you for reaching out.
>
> Could you confirm what you are trying to accomplish? If you are trying to 
> generate your OAuth2 credentials based on the guide 
>  
> provided in the AdWords API? If yes, the scope for this can be found here 
> 
> . 
>
> Regards,
> Dannison
> Google Ads API Team
>
> ref:_00D1U1174p._5001UHFvDZ: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/9115c880-759c-48b9-bfda-e535cc85a2fa%40googlegroups.com.


Re: Empty Recommendations

2019-09-08 Thread Martin SangDo
Hi Nikisha Patel,

I also use query "SELECT recommendation.text_ad_recommendation, 
recommendation.campaign FROM recommendation" (customer Id 294-644-4402).

but no recommendations in response. I see many Recommendations in Adwords 
UI.

On Saturday, 7 September 2019 03:02:17 UTC+7, adsapiforumadvisor wrote:
>
> Hi Duong,
>
> Thank you for reaching out. Could you please share the client customer id 
> for me to investigate further? Please use *Reply privately to author* 
> option while sharing the requested information.
>
> Regards,
> Nikisha Patel, Google Ads API Team
>
>
> ref:_00D1U1174p._5001UHFuSD: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/b11d7983-dfe1-4a51-bcc3-cfa0cab95f32%40googlegroups.com.


RE: No Gallery Ad data in reports

2019-09-08 Thread Google Ads API Forum Advisor Prod
Hi Artem,

So that I can discuss your issue with the rest of the team, could you provide 
the complete report definition together with the customer ID that you've used 
to generate report? You can provide it via Reply privately to author option? 
Please provide also sample ad IDs where you encountered the issues.

Regards,
Ejay
Google Ads API Team
ref:_00D1U1174p._5001UHG1Oi: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/qF9t70PXJSY800m2rvkJ-HR0GrUslay9FgZA%40sfdc.net.


Re: How to use AdWordsUserListService on an existing campaign/adgroups

2019-09-08 Thread Google Ads API Forum Advisor Prod
Hi Arnab,

Thank you for clarifying your concern.

Each email of the user will be contained within the Member object and each 
member will become collectively as the audience of your UserList object. You 
will need to create one Member object per each email that you wish to include 
in your userlist. You may refer to the sample code snippet below (from this 
example, also available for other languages):

// Hash normalized email addresses based on SHA-256 hashing algorithm.
List members = new ArrayList<>(EMAILS.size());
for (String email : EMAILS)
{
String normalizedEmail = toNormalizedString(email);
Member member = new Member();
member.setHashedEmail(toSHA256String(normalizedEmail));
members.add(member);
}

I hope this helps.

Regards,
Hiroyuki
Google Ads API Team
ref:_00D1U1174p._5001UHFs3z: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/wYr5c0PXJSKE00JAwf6r2NQ96CxTwbJqzgzw%40sfdc.net.


RE: Custom columns for Google Ads views?

2019-09-08 Thread Google Ads API Forum Advisor Prod
Hi Christopher,

Thanks for posting your concern.

I noticed that you also posted the same question in the Google Scripts forum 
and my colleague already responded to it.

Let me answer you in AdWords API perspective. Could you confirm first if you 
are referring to the custom columns in Google Ads UI? If yes, unfortunately, it 
is currently not possible to retrieve the custom columns through AdWords API. 
Please continue to follow our blog to receive updates/new releases.

Regards,
Ejay
Google Ads API Team
ref:_00D1U1174p._5001UHG0fn: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/ZRSi10PXJQ2U00AtJfWUjcS1SNfmT3A2zRQw%40sfdc.net.


OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE while setting MAXIMIZE_CONVERSION_VALUE for campaign bidding strategy

2019-09-08 Thread duong xuan toi
Hi,

Iam getting Error OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE while setting 
MAXIMIZE_CONVERSION_VALUE for campaign bidding strategy
Here is SOAP request and response:
SOAP request:

http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";>

https://adwords.google.com/api/adwords/cm/v201809"; 
soapenv:mustUnderstand="0">
xxx
REDACTED
Knorex-adwords (AwApi-Java, AdWords-Axis/4.1.0, 
Common-Java/4.1.0, Axis/1.4, Java/1.8.0_201, maven)
false
false



https://adwords.google.com/api/adwords/cm/v201809";>

ADD

31 may campaign adgroup test 1
20191201

6496185000

SEARCH

true
true
false


6458155126







2019-09-09 10:25:29.938  INFO 2211 --- [  XNIO-2 task-1] 
c.g.a.a.a.l.c.A.soapXmlLogger: SOAP response:

http://schemas.xmlsoap.org/soap/envelope/";>

https://adwords.google.com/api/adwords/cm/v201809";>
0005921656f7b76f0aa7874f64090e03
CampaignService
mutate
1
138




soap:Client

[OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE 
@ 
operations[0].operand.biddingStrategyConfiguration.biddingStrategyType]

https://adwords.google.com/api/adwords/cm/v201809";>

[OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE @ 
operations[0].operand.biddingStrategyConfiguration.biddingStrategyType]

ApiException
http://www.w3.org/2001/XMLSchema-instance"; 
xsi:type="OperationAccessDenied">

operations[0].operand.biddingStrategyConfiguration.biddingStrategyType

operations
0


operand


biddingStrategyConfiguration


biddingStrategyType



OperationAccessDenied.OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE
OperationAccessDenied

OPERATION_NOT_PERMITTED_FOR_CAMPAIGN_TYPE







-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/504de6b6-c74d-4a23-95ec-0576d7fe15df%40googlegroups.com.


RE: Can I get paid views for a youtube video by it's ID?

2019-09-08 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for reaching out.

You may download the Video Performance Report in the AdWords API as this will 
get all the metrics and attributes related to all your video ads. You will also 
be able to get the view count and cost for each ad. Refer to the sample query 
below.

AWQL: SELECT CampaignId, VideoTitle, VideoId, VideoChannelId, VideoViews, Cost, 
Clicks FROM VIDEO_PERFORMANCE_REPORT

Let me know if you have further concerns.

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UHG6Vo: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/gfCQT0PXJNUD00L3DfvZlhTvS54RdmHLbCSg%40sfdc.net.


RE: Update a conversion gclid

2019-09-08 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for reaching out.

It seems that your concern appears to be more of a product related concern. 
That said, I would recommend you to open your concern to the Google Ads 
Community Forum as the product owners are better equipped in answering your 
questions.

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UHG6Vj: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/2Zjb20PXJNS100Hre1A-sHSCOsG1mBgVc35A%40sfdc.net.


RE: Scope has changed from [...] to [...]

2019-09-08 Thread Google Ads API Forum Advisor Prod
Hi,

Thank you for reaching out.

Could you confirm what you are trying to accomplish? If you are trying to 
generate your OAuth2 credentials based on the guide provided in the AdWords 
API? If yes, the scope for this can be found here.

Regards,
Dannison
Google Ads API Team
ref:_00D1U1174p._5001UHFvDZ: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/KmO_w0PXJNIT00kTg3GAd1SYiou0OE_nJY1Q%40sfdc.net.


Can I get paid views for a youtube video by it's ID?

2019-09-08 Thread Strutio
Hi,

I have a youtube account that have some videos that are promoted using ads 
campaigns. I want to query the API to get the total number of paid views a 
video has received. I am open about using the AdWords API or Ads API as the 
application is not time critical.
So can I put in a youtube video id in some query and receive the total 
amount of paid views? How would a query like that look like? 
If that is not possible, is there any other option to get the result?  So 
can I query the account adwords account and get all video ids and total 
amount of views (so I can compare it to the video ids I have)?

Thanks for any help!

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/01916f49-a154-4afb-95cf-6d29b5b1a8f7%40googlegroups.com.


Update a conversion gclid

2019-09-08 Thread Or Koren
Hey, I’m using the api to update my ROAS pricing for ea h user 
https://developers.google.com/adwords/api/docs/guides/conversion-tracking

What happens if I update the same user with differ t values? (Prices)
Up or down are affected? Or only one way? Or none?

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ed4aa5f6-d20e-418b-9dab-8f27fa2b0594%40googlegroups.com.


Re: How to solve DEVELOPER_TOKEN_PROHIBITED error ?

2019-09-08 Thread Don Andarr
Hello,

Thank you for offering a solution by creating a new GCP project, however 
the problems are:

1. All existing authenticated clients will require reauthentication which 
is a MAJOR problem.
2. Creating a new GCP project will require going through new OAuth consent 
screen verification which is very time and resource consuming both ours and 
google resources as well.

This issue of "One developer token" attached per GCP project was never 
disclosed or mentioned in any place - neither documentation, nor policies. 
As it is critical and can't be changed for now, which creates a big 
problem, please add this to your documentation
 
Is there a solution on the horizon for changing this token association or 
removing this requirement? What is the solution right now?

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/51f2595b-4993-4797-ad63-129e70b2457d%40googlegroups.com.