I have an Angular SPA web application, register my site to Adsense they approved in 1 day later I inject the codes for showing ads. And other day ads started to shown. 1 hour later I started to see little income. But then income stopped but ads still in my site. Reports on Adsense counts the view but there is no income. Its like this last 3 weeks.

Is there anyone have experience with Adsense and Angular, because I feel like Adsense doesn't work with angular.

I am trying to get data for the conversion and the assigned final url using Google Ads API & GAQL. From what I saw, it is possible to click such a report using graphical tools, but in the API I do not see any way of combining this type of data into one report.

From the campaign level, it is not possible to simply add the final url field. https://developers.google.com/google-ads/api/fields/v7/campaign_query_builder

So my question is: \how can I get conversion data + final url from Google Ads using GAQL or AdsApp?

My current code, or rather query, looks like this:

... var report_conversion = AdsApp.report(   "SELECT campaign.name, " +   "segments.conversion_action_name, " +   "metrics.conversions, metrics.conversions_value" +    "FROM campaign WHERE segments.date > '2021-01-01' AND segments.date < '2021-01-31'" ); report_conversion.exportToSheet(sheet) 

We are currently having one active MCC account for production. We want to create a new MCC account for our testing purpose. If we apply for the approval of new account it gets rejected from Google it says there already exists one account.

How to create two MCC Account so that we can separate out the production and non production activity completely from each other?

We want both the accounts to be live and the ads get live and some impression,clicks can be accumulated against the ads.

I have a registration page on WP; when the data is collected it automatically logs the person in to the site. At that point I'd like to fire the Adwords conversion script in PHP.

This is what I have at the moment but it doesn't seem to be working (obvs changed

// register the user using the WP function do_action('user_register', $user_id);              // google script for signup echo "<script>          gtag('event', 'conversion', {'send_to': 'AW-id_number'});     </script>"; 

Is there an obvious reason why this isn't working?

Thanks for any help here.