I want to extract pageviews for landing page, The pageviews shown in google anlytic Report page is shown in below image

enter image description here

any help will be appreciated..

Thanks in advance..

Thanks if you try...

I got Answer If anyone need You can write code like this:

$landingPages = $ga->getReport(
        array('dimensions'=>urlencode('ga:pagePath'),
            'metrics'=>urlencode('ga:pageviews'),
            'max-results' => $limit,
            'filters' => urlencode('ga:pagePath==/')
        )
    );
link|improve this question

0% accept rate
Got Answer of Question – Sonal Khunt Feb 9 at 10:40
Nice! Sonal, you should put your answer in as an answer and accept it. – yahelc Feb 10 at 0:44
feedback

1 Answer

Landing Page is the first page load in any website, its called landing page in google analytic. If you want to get landing page view you can use below code

$landingPages = $ga->getReport(
        array('dimensions'=>urlencode('ga:pagePath'),
            'metrics'=>urlencode('ga:pageviews'),
            'max-results' => $limit,
            'filters' => urlencode('ga:pagePath==/')
        )
    )

Important part is : 'filters' => urlencode('ga:pagePath==/')

link|improve this answer
Sonal, please see: meta.stackoverflow.com/a/5235/159834 – Wesley Murch Apr 25 at 5:25
I already get landing page data successfully, i want city name with according visits – Sonal Khunt Apr 25 at 5:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.