GA4 will track just about anything that has an active tracking code on it regardless if the app/domain is a registered stream or not. So this means dev/staging environments will also get tracked in the production property which is of course undesirable unless the code is removed when migrating from prod to dev.
To prevent this issue from occurring when I migrate between environments I want to add a mechanism to check if the $_SERVER['HTTP_HOST'] is equal to the Stream URL setting in GA4. Using the PHP API lib provided by Google, I can get as close as the Stream Name using the runReport method, but this would not necessarily always be equal to the URL. I'm hoping for another method that can return config settings rather than a report.
I am wondering if it's possible to get the STREAM URL value instead of STREAM NAME. This is as close as I've gotten.
function ga4_streams() {
init_ga4(); // This function authenticates
$client = new BetaAnalyticsDataClient();
$response = $client->runReport([
'property' => 'properties/' . GA4_PROPERTY_ID,
'dateRanges' => [
new DateRange([
'start_date' => '2022-01-01',
'end_date' => 'today',
]),
],
'dimensions' => [new Dimension(
[
'name' => 'streamName',
]
),
],
]);
$streams = array();
foreach ($response->getRows() as $row) {
$streams[] = $row->getDimensionValues()[0]->getValue();
}
return $streams;
}
$streams = ga4_streams();
if ( in_array($_SERVER['HTTP_HOST'], $streams ) ) {
// GA4 Tracking stuff here
}
Our community is visited by hundreds of web development professionals every day. Ask your question and get a quick answer for free.
Find the answer in similar questions on our website.
Do you know the answer to this question? Write a quick response to it. With your help, we will make our community stronger.
PHP (from the English Hypertext Preprocessor - hypertext preprocessor) is a scripting programming language for developing web applications. Supported by most hosting providers, it is one of the most popular tools for creating dynamic websites.
The PHP scripting language has gained wide popularity due to its processing speed, simplicity, cross-platform, functionality and distribution of source codes under its own license.
https://www.php.net/
Welcome to the Q&A site for web developers. Here you can ask a question about the problem you are facing and get answers from other experts. We have created a user-friendly interface so that you can quickly and free of charge ask a question about a web programming problem. We also invite other experts to join our community and help other members who ask questions. In addition, you can use our search for questions with a solution.
Ask about the real problem you are facing. Describe in detail what you are doing and what you want to achieve.
Our goal is to create a strong community in which everyone will support each other. If you find a question and know the answer to it, help others with your knowledge.