Sunith Saga
Sunith Saga

Reputation: 609

How to get mobile device name details using google analytics

Is there any way to get mobile model name and details from google analytic. I am using 'gapi.class.php' for getting details.

So far I have tried:

requestReportData(ga_profile_id,array('browser','mobileDeviceBranding','source'),array('visits','pageviews'),array('-visits'))

for getting details, since i got

Device    Visits    Page/Visit
Apple     145          1.7
Samsung   245          1.33
Apple

How can I get further details?

Upvotes: 0

Views: 1462

Answers (1)

Eduardo
Eduardo

Reputation: 22834

Use the dimensions ga:mobileDeviceInfo and ga:mobileDeviceModel.

For a list of all dimensions use the following page:

https://developers.google.com/analytics/devguides/reporting/core/dimsmets

Please refrain from creating "How do I get the following info from GA API?" questions before looking at the link above.

Upvotes: 2

Related Questions