Re: question. how to query/set ads portrait image?

2023-07-06 Thread hua
May I ask if the  portrait  image can be completed through the function
added through the API?

On Mon, Jun 5, 2023 at 6:13 PM Google Ads API Forum Advisor
 wrote:

> Hi Chun,
>
> Thank you for getting back to us.
>
> It appears that you have already provided the same UI screenshots
> previously.  In case you missed our previous response to this, you may
> refer to the context below.
>
> “Since the provided UI screenshot indeed is a portrait image, allow me to
> raise a feature request for this. However, there is no guarantee if this
> will be supported soon. All I can say is for now, please keep an eye on our
> blog post for the updates and releases.”
>
> Links included in this email:
>
>- Google Ads API -
>*https://developers.google.com/google-ads/api/docs/start*
>
>- Blog -
>*https://ads-developers.googleblog.com/search/label/google_ads_api*
>
>
> This message is in relation to case "ref:_00D1U1174p._5004Q2lKgDi:ref"
>
> Thanks,
>
> [image: Google Logo] Google Ads API Team
>
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/CADSnYDikGSvVBfvYxquv946fheXnVa-eCzp2FMcRPeOiRD4aQQ%40mail.gmail.com.


Is there an adwords API for testing keywords match types?

2013-09-24 Thread Hua Ai
Hello!  I'm asking a more general match type question. I don't know a 
better place to ask... so please excuse me if this is not a topic of 
interest for this forum.  I've read Adwords' match type definitions here (
https://support.google.com/adwords/answer/2497836?hl=en),  but for broad 
match type, I'm not quite sure how exactly synonyms will be considered. So 
I'm wondering if there is an API to test keywords match types. For example, 
if I have a typed query TQ, and a keyword KW, is there a function like 
BroadMatch(TQ, KW) that can return True/False on whether TQ can match onto 
KW?

Thank you!
Hua

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


Our account has ad groups set up, but performance data is not available through ADGROUP_PERFORMANCE_REPORT

2019-12-04 Thread wenbin hua
Our account has ad groups set up, but performance data is not available 
through ADGROUP_PERFORMANCE_REPORT. It is normal to obtain the same 
customerId through CAMPAIGN_PERFORMANCE_REPORT

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ec84554c-f8ac-4f6b-a909-8038bb3ace48%40googlegroups.com.


ADGROUP_PERFORMANCE_REPORT: no data returned in AdWords API

2019-12-04 Thread wenbin hua


$selector = new Selector();
$selector->setFields(
   [
  "AdGroupId", "AdGroupName", "Cost"
   ]
);
// Create report definition.
$reportDefinition = new ReportDefinition();
$reportDefinition->setSelector($selector);
$reportDefinition->setReportName(
   'ADGROUP performance report '
);
$reportDefinition->setDateRangeType(
   ReportDefinitionDateRangeType::LAST_7_DAYS
);
$reportDefinition->setReportType(
   ReportDefinitionReportType::ADGROUP_PERFORMANCE_REPORT
);
$reportDefinition->setDownloadFormat(DownloadFormat::CSV);
// Download report.
$reportDownloader = new ReportDownloader($session);


$reportSettingsOverride = (new 
ReportSettingsBuilder())->includeZeroImpressions(true)->build();
$reportDownloadResult = $reportDownloader->downloadReport(
   $reportDefinition,
   $reportSettingsOverride
);
$reportDownloadResult->saveToFile($filePath);


no data returned

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/a11a1f69-2cbf-4b49-98cd-3c805e784ee6%40googlegroups.com.


Re: ADGROUP_PERFORMANCE_REPORT: no data returned in AdWords API

2019-12-04 Thread wenbin hua
Hi
customer ID:748-343-2707

> 在 2019年12月5日,上午1:15,Google Ads API Forum Advisor Prod 
>  写道:
> 
> Hi Wenbin,
> 
> Thank you for reaching out. Can you also please share your client customer ID 
> via reply privately to author so that I can further investigate the issue?
> 
> 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/22DED0CC-D9AC-4942-9631-64D1354314C6%4089trillion.com.


adwords report api how get UAC AdGroup report data

2019-12-16 Thread wenbin hua
adwords report api how get UAC AdGroup report data

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/0c83cdd3-cf3b-4ad1-8062-6822a557b070%40googlegroups.com.


adwords report api how get UAC AdGroup report data

2019-12-16 Thread wenbin hua
adwords report api how get UAC AdGroup report data

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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/ac91e769-e002-4101-8e37-78d1c367488e%40googlegroups.com.


Re: adwords report api how get UAC AdGroup report data

2019-12-16 Thread wenbin hua
Hi Mitchell,
Is it possible to obtain basic data such as cost clicks for UAC Adgroup?

在 2019年12月16日星期一 UTC+8下午11:08:21,adsapiforumadvisor写道:
>
> Hi Wenbin,
>
> Thank you for reaching out. Unfortunately, App campaign data can only be 
> pulled from the campaign level and is only supported in the reports listed 
> here 
> .
>  
> You can keep an eye on our Developer Blog 
>  for information on future 
> releases.
>
> Regards,
> Mitchell
> Google Ads API Team
>
> ref:_00D1U1174p._5001UOEcRW: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/f16c211d-37c3-42cc-bbff-8fa68f951223%40googlegroups.com.


How to get an ad's url using Google Ads Api v201809

2020-06-26 Thread Alain Hua
Hello,

I am using this example : 
https://developers.google.com/adwords/api/docs/samples/php/basic-operations#get-expanded-text-ads-in-an-ad-group,
 
trying to get an url from an ad.

My selector looks like this : 
$selector->setFields(
['DisplayUrl', 'Url']
);

Those 2 fields are said to be filterable : 
https://developers.google.com/adwords/api/docs/appendix/selectorfields#v201809-AdGroupAdService

My problem is when i am using $adGroupAd->getAd()->getUrls 
or $adGroupAd->getAd()->getDisplayUrl() (see the example above), it always 
return NULL for both fields.

I am sure that the ads that i m requesting on, have urls, so i dont 
understand why ?


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/c8e55d55-5676-4eda-9b4d-7f1f6067e1ddn%40googlegroups.com.


Re: How to get an ad's url using Google Ads Api v201809

2020-06-29 Thread Alain Hua
Hello,

Thanks for you answer.

After reading the documentation 

 for 
several times, i have found that i can get finalUrls using the field 
"CreativeFinalUrls" in the selector, but really, it can be so easily 
missed. 
The documentation for the Selector 

 is 
pretty confusing because it says that FinalUrls is not a filterable field 
for the selector but it doesen't say "use CreativeFinalUrls instead".

I have been through the same kind of issue with the Responsive Display Ad 
.
 
It doesen't say it's deprecated until you request the api, trying to create 
one.

Best regards,

Alain.



Le vendredi 26 juin 2020 à 23:31:07 UTC+2, adsapiforumadvisor a écrit :

> Hi Alain,
>
> Thank you for reaching out. Expanded text ads do not use url 
> 
> , displayUrl 
> 
> , finalAppUrls 
> ,
>  
> or devicePreference 
> 
>  
> and setting these fields on an expanded text ad will cause an error. This 
> also means that you are not able to fetch these fields for an expanded text 
> ad through the API. Please refer to this documentation 
> 
>  
> for more information.
>
> Thanks and regards,
> Xiaoming, Google Ads API Team
>
>  
>
>
>  
>
> ref:_00D1U1174p._5004Q219kLv: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/45d284e5-31f2-4212-b256-bdbc338c0d24n%40googlegroups.com.