google analytics api v4 using PHP. Ordering output -


i have code on google analytics api v4 php.

  $ecpm_adsense = new google_service_analyticsreporting_metric();   $ecpm_adsense->setexpression("ga:adsenseecpm");   $ecpm_adsense->setalias("ecpm adsense");       // create ordering.     $ordering = new google_service_analyticsreporting_orderby();     $ordering->setfieldname("ga:adsenseecpm");     $ordering->setordertype("value");        $ordering->setsortorder("descending"); 

the ordering not works me. can me? thanks

i have created library integrate analytics api v4 using php easy. take at: https://github.com/panakour/google-analytics


Comments

Popular posts from this blog

testing - Detect whether test has failed within fixture -

AbotX : How do you create a parallel crawler that stays on and can be added to at run time from new requests -

android - Create single AAR file from multiple modules using Gradle -