I want a sample code for Google Analytics Data API (GA4) in PHP using orderBy and Filters

1.9k Views Asked by At

I have gone through several git repositories to get the sample code using Filters and OrderBy using php-client-library for GA4 data analytics. Can you please help me with small sample code for using it ? I tried many ways but none are working.

My requirement I have was to sort the result by Dimention and also filters the top 10 pages with specific query string in the url.

This is the one I'm using for implementing : https://developers.google.com/analytics/devguides/reporting/data/v1/quickstart-client-libraries#php_1

I also found that the samples link in php section opens a python samples :

enter image description here

  • Suresh
2

There are 2 best solutions below

2
On
'orderBys' => [
    new OrderBy([
        'metric' => new MetricOrderBy(
            [
                'metric_name' => 'screenPageViews'
            ]
        ),
        'desc' => true
    ])
],
0
On

Call from orderbys has changed a little bit to

'order_bys' => [
    new OrderBy([
        'metric' => new MetricOrderBy(
            [
                'metric_name' => 'screenPageViews'
            ]
        ),
        'desc' => true
    ])
],

You can find the change here: https://cloud.google.com/php/docs/reference/analytics-data/latest/V1beta.RunReportRequest