Posts tagged with google-ads-api

I want to update our code for the new Google Ads API but I cant find the API Center in Google Ads Dashboard with the main account.

When I open the url to API Center than came this message: Only administrative account users have access to the API Center. For more information, see the API login guide

Has anyone a idea or is there another way to get the Developer Token?

I have a application with a ads. And i have a 1 banner ads. Can i use same unit id for use more than 1 banner only ? Like if i want use 3 banner should i take 3 diffrent banner id or same is working well too ? I googled it but cant found any document or same question as i asked thats why i want to ask in here .If i can use then i will put two or three ads with same id. And is it effecting money to get ? I just need informations about it. Thanks for helps :)

secondBanner = BannerAd(       size: AdSize.banner,       adUnitId: "MyBannerId",       listener: BannerAdListener(onAdLoaded: (ad) {         setState(() {           secondBannerLoaded = true;         });         print("Banner AD LOADED!!!!!!!!!!!");       }, onAdFailedToLoad: (ad, error) {         print("Banner AD ERRRRRRRRRRRRRRRRRRRR!!!!!!!!!!!");         inspect(error);         ad.dispose();       }),       request: AdRequest(),     );     bannerAd = BannerAd(       size: AdSize.banner,       adUnitId: "MyBannerId",       listener: BannerAdListener(onAdLoaded: (ad) {         setState(() {           isLoaded = true;         });         print("Banner AD LOADED!!!!!!!!!!!");       }, onAdFailedToLoad: (ad, error) {         print("Banner AD ERRRRRRRRRRRRRRRRRRRR!!!!!!!!!!!");         inspect(error);         ad.dispose();       }),       request: AdRequest(),     );     bannerAd!.load();     secondBanner!.load(); 

I need help with getting metrics for sitelink extensions. I have tried this query but no results are returned. I can see 6 sitelink extensions in the UI.

SELECT campaign.name, feed_item.attribute_values, metrics.clicks, metrics.impressions, metrics.ctr , segments.interaction_on_this_extension, segments.placeholder_type FROM feed_item WHERE segments.date BETWEEN '2022-04-10' AND '2022-05-10' ORDER BY metrics.clicks DESC LIMIT 10