Re: Error with Basic access

2021-04-10 Thread Krzysztof Rodo
Hi, this field ad_group_ad.ad.video_responsive_ad.videos works, but no there is an error with this field: ad_group_ad.ad.video_responsive_ad.videos.asset So my query looks like: ``` "SELECT campaign.name, ad_group.name, *ad_group_ad.ad.video_responsive_ad.videos.asset*, " .

Re: Internal error encountered in simple query

2021-03-02 Thread Krzysztof Rodo
Hi, have you solved the issue? Regards! poniedziałek, 4 stycznia 2021 o 05:06:59 UTC+1 adsapiforumadvisor napisał(a): > Hi Krzysztof, > > Thank you for reaching out. > > Could you confirm if you are encountering this consistently? If yes, could > you provide your customer ID and the complete

Re: Error with Basic access

2021-03-02 Thread Krzysztof Rodo
Hi, have you solved it? Regards! wtorek, 5 stycznia 2021 o 14:49:36 UTC+1 adsapiforumadvisor napisał(a): > Hello, > > We have determined that it may be an error with the field > "ad_group_ad.ad.video_responsive_ad.videos". Please try rerunning the query > without including that field and let

Re: Error with Basic access

2021-01-04 Thread Krzysztof Rodo
Hi, do you have some information? poniedziałek, 28 grudnia 2020 o 16:59:33 UTC+1 adsapiforumadvisor napisał(a): > Hi Chris, > > It appears as though these errors may be caused by a bug in our system, > possibly due to the size of the query. > > I'm going to correspond with our engineering

Internal error encountered in simple query

2021-01-03 Thread Krzysztof Rodo
Hi, while running this query: $query = "SELECT ad_group_ad.ad.video_responsive_ad.videos, ad_group_ad.ad.video_responsive_ad.long_headlines FROM ad_group_ad"; I get following error: ApiException was thrown with message '{ "message": "Internal error encountered.", "code": 13, "status":

Re: Error with Basic access

2020-12-25 Thread Krzysztof Rodo
Hi Anthony, have you checked it, why I am facing these internal errors? Regards, Chris środa, 23 grudnia 2020 o 20:57:33 UTC+1 adsapiforumadvisor napisał(a): > Hello, > > I will take a closer look and get back to you as to why you are facing > these internal errors. > > Regards, > Anthony >

Error with Basic access

2020-12-23 Thread Krzysztof Rodo
Hi, I got an error: ```ApiException was thrown with message '{ "message": "Internal error encountered.", "code": 13, "status": "INTERNAL", "details": [ { "@type": "request-id", "data": "4jQ7iPe2qf0TApPpgPctkw" } ] }'.``` while running the query: ``` $query = "SELECT campaign.name,

pagination

2020-12-16 Thread Krzysztof Rodo
Hi, I am trying to do the pagination with google ads api. How can I do this? I would like to divide result to chunks of 10 ads per request. -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/

Images asset

2020-11-18 Thread Krzysztof Rodo
My query looks like: SELECT ad_group_ad.ad.responsive_display_ad.logo_images.asset FROM ad_group_ad and I am getting error: The following field may not be used in SELECT clause: 'ad_group_ad.ad.responsive_display_ad.logo_images.asset' Why? How can I select asset from this ad? -- --

Private notes

2020-11-14 Thread Krzysztof Rodo
Hi, how can I fetch private notes, that are next to each campaign? I am writing about these notes: https://support.google.com/google-ads/answer/7560833?hl=en How can I fetch them via API? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

campaign_asset

2020-11-13 Thread Krzysztof Rodo
SELECT campaign.id, campaign.name, asset.image_asset.full_size.url, FROM campaign_asset Why I get error while running this query? Error returned by Google Ads API: Client error: `POST https://googleads.googleapis.com/v4/customers/432132766/googleAds:search` resulted in a `400 Bad Request`

Re: Getting campaigns name with theirs photos

2020-11-13 Thread Krzysztof Rodo
So how can I fetch images of each campaign/ad and connect it with campaign? piątek, 13 listopada 2020 o 15:19:49 UTC+1 adsapiforumadvisor napisał(a): > Hello, > > Unfortunately, you won't be able to get the image/video field with these > reports. However, you can use the following query to get

Image URL

2020-11-12 Thread Krzysztof Rodo
My query looks like: SELECT campaign.name, ad_group_ad.ad.image_ad.preview_image_url FROM ad_group_ad LIMIT 100 Why the ad.image_ad.preview_image_url looks like: customers/7133152131/campaigns/12653633410 ? What is the final url to this image? -- --

Getting campaigns name with theirs photos

2020-11-12 Thread Krzysztof Rodo
Hi, I need to create table with these fields: |Name of campaign||Impressions|Cost||Conversation Rate||Conversions||Date||Budget||Image/Video of this ad|| How my query should look like? -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog:

Get campaigns with their photos

2020-11-12 Thread Krzysztof Rodo
Hi, I need to fetch: |Name of campaign||Impressions|Cost||Conversation Rate||Conversions||Date||Budget||Image/Video of this ad|| Can I fetch it all from campaign entity? How? $googleAdsServiceClient = $googleAdsClient->getGoogleAdsServiceClient(); // Creates a query that