- Encoding ">" in query - 1 Update
- Audience Segments - 2 Updates
- changed statistics - 2 Updates
- API Bidding - 1 Update
- api token application not hear back - 2 Updates
- how to use google adwords api gets keyword monthly searchvolume for the past few years - 2 Updates
- having trouble with app install campaign api - 1 Update
- Google Ads API Basic Access Request has not been replied for more than 2 weeks - 2 Updates
- Image and Location Migration in Google Ads API - 1 Update
- Data not populating in Google Ads Customer List - 1 Update
- Google Ads APi - no replay for basic access - 1 Update
- Keyword performance mismatch API vs UI - 1 Update
"Henrik Ravnskjær" <h...@feline.dk>: Jul 12 03:47AM -0700
Thi smight not be the correct place to post, but I try anyway.
I have a string encoding problem in my c# console app.
I have this code:
...
GoogleAdsServiceClient googleAdsService =
client.GetService(Services.V14.GoogleAdsService);
string query =
"SELECT " +
"metrics.all_conversions, " +
"metrics.impressions, " +
"metrics.clicks, " +
"metrics.cost_micros, " +
"segments.device, " +
"segments.date " +
"FROM ad_group " +
"WHERE segments.date => '2023-07-01' " +
"ORDER BY segments.date DESC " +
"";
try
{
// Issue a search request.
googleAdsService.SearchStream("[removed]", query,
delegate (SearchGoogleAdsStreamResponse resp)
{
...
But when I run it I get this error:
{
"customerId": "[removed]",
"query": "SELECT metrics.all_conversions, metrics.impressions,
metrics.clicks, metrics.cost_micros, segments.device, segments.date FROM
ad_group WHERE segments.date =\u003e '2023-07-01' ORDER BY segments.date
DESC ",
"summaryRowSetting": "NO_SUMMARY_ROW"
}
the ">" char is converted to " \u003e" in the where clause.
Any idea how to avoid that?
Adam Muszalik <amus...@gmail.com>: Jul 12 01:06AM -0700
Hello,
I have a problem regarding the audience segments.
I have an adgroup with some adgroup criteria of a type CustomIntent
I queried the resource name customers/XXX/customInterests/YYY to get more
details.
There is a name and most important an array of kw/url members
Members =
{[ { "memberType": "KEYWORD", "parameter": "athletic flooring" },
{ "memberType": "KEYWORD", "parameter": "wood gym floor" },
{ "memberType": "KEYWORD", "parameter": "wood sports flooring" },
{ "memberType": "KEYWORD", "parameter": "gymnasium flooring" }, {...
I cannot find a possibility to get some kind of a dictionary presented on
the left side
[image: photo1.png]
What I tried next:
for another ad account I tried to copy the resource name from the other ad
account.
I set same name, members and type = 'CustomIntent'.
The created resource name has the same structure but the main difference is
that the new entity is a custom audience:
[image: photo2.png]
Does anyone know how to 'perform' a checkbox click from the left side of
the custom intent tree?
Thanks,
Adam
Google Ads API Forum Advisor <ads...@forumsupport.google>: Jul 12 10:42AM
Hi Adam,
Thank you for reaching out to the Google Ads API support team. I hope that you are doing well today.
I understand your concern and for us to further investigate the issue, could you please provide us with the complete request and response logs with request-id and request headers generated on your end? If you haven't enabled the logging yet, logging can be enabled by navigating to the Client libraries > Your client library (ex. Java) > Logging documentation, which you can access from this link here https://developers.google.com/google-ads/api/docs/client-libs?hl=en.
You can provide it via Reply privately to the author option. If this option is not available, then send it instead on this email address googleadsa...@google.com.
Reference links:
request - https://developers.google.com/google-ads/api/docs/concepts/field-service?hl=en#request
response - https://developers.google.com/google-ads/api/docs/concepts/field-service?hl=en#response
request-id - https://developers.google.com/google-ads/api/docs/concepts/call-structure?hl=en#request-id
request header - https://developers.google.com/google-ads/api/docs/concepts/call-structure#request_headers
This message is in relation to case "ref:_00D1U1174p._5004Q2n6foT:ref"
Thanks,
Google Ads API Team
Inna Keegan <in...@keegan.ru>: Jul 11 03:27PM -0700
Hello!
Could you, please, tell me how can I get changes in clicks (when Google
detect invalid traffic) via API?
Like what if Google correct my 3 days ago statistics. How do I know I need
to reload it via API for that date?
Is there any method? Cause in Click View I don't see any filter like that.
Google Ads API Forum Advisor <ads...@forumsupport.google>: Jul 12 10:34AM
Hi Inna,
Thank you for reaching out to the Google Ads API Support Team.
Could you please clarify if you're aiming to check how much the difference is of the recorded clicks <https://developers.google.com/google-ads/api/fields/v14/metrics#metrics.clicks> from one date to another? If yes, then I would suggest to create a report <https://developers.google.com/google-ads/api/fields/v14/overview> and utilize specific dates or implement a date range you're retrieving data from. You can check this link <https://developers.google.com/google-ads/api/docs/query/date-ranges> for more information on date ranges.
If you'd like to check how much they've decreased or increased in value, you can post-process the report and essentially compare them. If the first date is much lower, you'd subtract the first date from the second date's recorded metric and, if not, subtract the second date from the first if the former is much higher.
If this is not what you're looking for, then could you please further elaborate on your concern so we're able to have a clear understanding of it? It would be much appreciated if you could provide complete and uncropped supporting screenshots for us to have a better visualization of the information you're aiming to retrieve.
You may send the requested information via the Reply privately to author option. Note that you may need to join the Google Group for you to use this option. If this option is not available on your end still, you may send the details directly to our alias `googleadsa...@google.com` instead.
This message is in relation to case "ref:_00D1U1174p._5004Q2n6ZC0:ref"
Thanks,
Google Ads API Team
Adrian Lazar <adr...@tempr.ai>: Jul 12 03:32AM -0700
Hello,
I've been struggling to integrate API Bidding Updates (Mutates) for
Campaigns and AdGroups.
Library used: Google Ads API Python Client Library
<https://github.com/googleads/google-ads-python>
Version: *21.2.0*
Currently, I've only managed to get working API Bidding Updates (Mutates)
for Campaigns using TARGET_ROAS and TARGET_CPA, and for AdGroups using
MANUAL_CPC, MANUAL_CPM and TARGET_CPM.
My goal is to be able to provide API Bidding Updates (Mutates) for all the
available bidding strategies, by using the Google Ads API Python Client
Library <https://github.com/googleads/google-ads-python>. Important Note:
The only type of Campaigns that we are interested in are *App Campaigns.*
Example of failed request (and response) for setting MANUAL_CPC for a
Campaign:
[2023-07-12 10:24:46 - INFO] Request
-------
Method: /google.ads.googleads.v14.services.CampaignService/MutateCampaigns
Host: googleads.googleapis.com
Headers: {
"developer-token": "REDACTED",
"login-customer-id": "9126245774",
"x-goog-api-client": "gl-python/3.11.4 grpc/1.54.2 gax/2.11.0 gccl/21.2.0
pb/4.23.2",
"x-goog-request-params": "customer_id=2371697191"
}
Request: customer_id: "2371697191"
operations {
update_mask {
paths: "resource_name"
paths: "app_campaign_setting.bidding_strategy_goal_type"
paths: "manual_cpc.enhanced_cpc_enabled"
}
update {
resource_name: "customers/2371697191/campaigns/14304399031"
app_campaign_setting {
bidding_strategy_goal_type: OPTIMIZE_INSTALLS_TARGET_INSTALL_COST
}
manual_cpc {
enhanced_cpc_enabled: true
}
}
}
Response
-------
Headers: {
"google.ads.googleads.v14.errors.googleadsfailure-bin":
"\nr\n\u0003\u0003\u0002\u00123The operation is not allowed for the given
context.\u001a\f*\nMANUAL_CPC\"(\u0012\u000e\n\noperations\u0018\u0000\u0012\b\n\u0006update\u0012\f\n\nmanual_cpc\u0012\u0016a3jdlHwU1x1MFIYrWhixDw",
"grpc-status-details-bin": "\b\u0003\u0012%Request contains an invalid
argument.\u001a\u0001\nDtype.googleapis.com/google.ads.googleads.v14.errors.GoogleAdsFailure\u0012\u0001\nr\n\u0003\u0003\u0002\u00123The
operation is not allowed for the given
context.\u001a\f*\nMANUAL_CPC\"(\u0012\u000e\n\noperations\u0018\u0000\u0012\b\n\u0006update\u0012\f\n\nmanual_cpc\u0012\u0016a3jdlHwU1x1MFIYrWhixDw",
"request-id": "a3jdlHwU1x1MFIYrWhixDw"
}
Fault: errors {
error_code {
context_error: OPERATION_NOT_PERMITTED_FOR_CONTEXT
}
message: "The operation is not allowed for the given context."
trigger {
string_value: "MANUAL_CPC"
}
location {
field_path_elements {
field_name: "operations"
index: 0
}
field_path_elements {
field_name: "update"
}
field_path_elements {
field_name: "manual_cpc"
}
}
}
request_id: "a3jdlHwU1x1MFIYrWhixDw"
The error "The operation is not allowed for the given context." is quite
generic and doesn't really provide any useful information to understand why
this operation is not allowed. The exact same error is raised for all the
other Bidding Strategies attempted.
Thank you!
Sean <se...@clickad.com>: Jul 11 11:01PM -0700
Hi,
Our api access level still test account until now. Could you help me review
my api level application?
Thanks!
在2023年7月11日星期二 UTC+8 21:37:05<Google Ads API Forum Advisor> 写道:
Google Ads API Forum Advisor <ads...@forumsupport.google>: Jul 12 08:40AM
Hi Sean,
Thank you for getting back to us.
Please note that we have already reached out to the Google Ads API Compliance team on your behalf. That said, kindly check your email for their response since any further communications regarding your API access application will be through that ticket.
This message is in relation to case "ref:_00D1U1174p._5004Q2mt7il:ref"
Thanks,
Google Ads API Team
Grace <luyuan...@gmail.com>: Jul 11 07:49PM -0700
Thanks, I'll try it out and get back to you if I have any questions.
On Tuesday, 11 July 2023 at 21:13:37 UTC+8 Google Ads API Forum Advisor
wrote:
Google Ads API Forum Advisor <ads...@forumsupport.google>: Jul 12 07:09AM
Hi Grace,
Thank you for the updates.
Yes, If you need anything that is specific with our Google Ads API (https://developers.google.com/google-ads/api/docs/start), then we would be happy to assist you further.
This message is in relation to case "ref:_00D1U1174p._5004Q2n6ERU:ref"
Thanks,
Google Ads API Team
Satheesh M <sath...@gmanlabs.com>: Jul 12 10:12AM +0530
ok thanks for your reply ... should we need to create these credentials
from the manager account email id ? or any other email id/ cloud account we
can create ?...
Regards,
Satheesh M
On Tue, Jul 11, 2023 at 7:46 PM Google Ads API Forum Advisor
BI Aba Tech <biab...@gmail.com>: Jul 11 02:59PM -0700
Google Team,
I am following up on our request for an API key upgrade from Testing to
Basic in order to make important reports. We initially submitted the
request over a two weeks ago, and unfortunately, we have not received any
response from your end.
To provide you with the necessary information, our Google Ads account
number is 236-607-2017.
We greatly appreciate your attention to this matter and look forward to
hearing from you soon. Thank you for your assistance.
Best regards.
Alex Kurilin <alex.k...@conceptualhq.com>: Jul 11 05:56PM -0700
Similar issue here, although it's only been 5 business days so far. Would
be great to hear back from the Google Ads folks even just to have
confirmation that they received the application and it will be eventually
looked at.
On Tuesday, July 11, 2023 at 2:59:19 PM UTC-7 BI Aba Tech wrote:
Google Ads API and AdWords API Forum <adwor...@googlegroups.com>: Jul 11 02:23PM -0700
Re-posting the last inquiry
(https://groups.google.com/g/adwords-api/c/TghJnSFut4k) from the forum as
it wasn't routed to our support queue.
Regards,
Google Ads API Team
On Wednesday, July 12, 2023 at 12:51:57 AM UTC+8 emily....@snowflake.com
wrote:
Google Ads API and AdWords API Forum <adwor...@googlegroups.com>: Jul 11 02:20PM -0700
Re-posting the last inquiry
(https://groups.google.com/g/adwords-api/c/p0gxl5pfHFU) from the forum as
it wasn't routed to our support queue.
Regards,
Google Ads API Team
On Wednesday, July 12, 2023 at 12:25:32 AM UTC+8 Jan Rewer wrote:
Google Ads API and AdWords API Forum <adwor...@googlegroups.com>: Jul 11 02:19PM -0700
Re-posting the last inquiry
(https://groups.google.com/g/adwords-api/c/w3NyXeOXyRE) from the forum as
it wasn't routed to our support queue.
Regards,
Google Ads API Team
On Tuesday, July 11, 2023 at 5:33:33 PM UTC+8 Tiana S. wrote:
You received this digest because you're subscribed to updates for this group. You can change your settings on the group membership page.
To unsubscribe from this group and stop receiving emails from it send an email to adwords-api...@googlegroups.com.