GoogleAnalytics API Get response with empty rowsHow to get pageviews data for a separate page in GoogleAnalytics APIGoogleAnalytics for own dataGoogleAnalytics 2.0b4 void GAIUncaughtExceptionHandler?Getting GoogleAnalytics working in all activitiesGoogleAnalytics reporting API Access Not Configured errorAndroid GoogleAnalytics v3 - TrackPageViewUsing GoogleAnalytics with a Service AccountGoogleAnalytics ServiceAccount authGoogleAnalytics API Error startindex and maxresults

How could an armless race establish civilization?

How to securely dispose of a smartphone?

Does a return economy-class seat between London and San Francisco release 5.28 tonnes of CO2 equivalents?

Is ALTER TABLE ... DROP COLUMN really a metadata only operation?

Have any large aeroplanes been landed — safely and without damage — in locations that they could not be flown away from?

Do home values typically rise and fall consistently across different price ranges?

Why would anyone even use a Portkey?

Discworld quote about an "old couple" who having said everything to each other, can finally go about living their lives

Why was Pan Am Flight 103 flying over Lockerbie?

I agreed to cancel a long-planned vacation (with travel costs) due to project deadlines, but now the timeline has all changed again

Copy group of files (Filename*) to backup (Filename*.bak)

The Lucas argument vs the theorem-provers--who wins and why?

If you kill a Solar Angel can you use its Slaying Longbow?

How does mmorpg store data?

How can I deal with extreme temperatures in a hotel room?

Cooking a nice pan seared steak for picky eaters

List manipulation: conditional result based on variable-length sublists

13th chords on guitar

How do pure functions differ from functions defined with SetDelayed?

What do you call a notepad used to keep a record?

Why were the first airplanes "backwards"?

How useful would a hydroelectric plant be in the post-apocalypse world?

Fully submerged water bath for stove top baking?

Closest Proximity of Oceans to Freshwater Springs



GoogleAnalytics API Get response with empty rows


How to get pageviews data for a separate page in GoogleAnalytics APIGoogleAnalytics for own dataGoogleAnalytics 2.0b4 void GAIUncaughtExceptionHandler?Getting GoogleAnalytics working in all activitiesGoogleAnalytics reporting API Access Not Configured errorAndroid GoogleAnalytics v3 - TrackPageViewUsing GoogleAnalytics with a Service AccountGoogleAnalytics ServiceAccount authGoogleAnalytics API Error startindex and maxresults






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















When a user register to my application, i check the monthly visitors of his website.



Sometimes it happens that the report return empty rows and i don't know why. If someone have an idea.



 $content = json_encode([
'reportRequests' => [
[
'viewId' => $extraParameters['viewId'],
'dateRanges' => [
[
'startDate' => '30daysAgo',
'endDate' => 'yesterday',
],
],
'metrics' => [
[
'expression' => 'ga:users',
],
[
'expression' => 'ga:pageviews'
],
],
],
],
]);


Sometimes i get that result :




"reports": [

"columnHeader":
"metricHeader":
"metricHeaderEntries": [
"name": "ga:users", "type": "INTEGER" ,
"name": "ga:pageviews", "type": "INTEGER"
]

,
"data": "totals": [ "values": ["0", "0"] ]

]




I expect a result with rows like :




"reports": [

"columnHeader":
"metricHeader":
"metricHeaderEntries": [
"name": "ga:users", "type": "INTEGER" ,
"name": "ga:pageviews", "type": "INTEGER"
]

,
"data":
"rows": [ "metrics": [ "values": ["111", "257"] ] ],
"totals": [ "values": ["111", "257"] ],
"rowCount": 1,
"minimums": [ "values": ["111", "257"] ],
"maximums": [ "values": ["111", "257"] ]


]



Thanks for your help.










share|improve this question




























    0















    When a user register to my application, i check the monthly visitors of his website.



    Sometimes it happens that the report return empty rows and i don't know why. If someone have an idea.



     $content = json_encode([
    'reportRequests' => [
    [
    'viewId' => $extraParameters['viewId'],
    'dateRanges' => [
    [
    'startDate' => '30daysAgo',
    'endDate' => 'yesterday',
    ],
    ],
    'metrics' => [
    [
    'expression' => 'ga:users',
    ],
    [
    'expression' => 'ga:pageviews'
    ],
    ],
    ],
    ],
    ]);


    Sometimes i get that result :




    "reports": [

    "columnHeader":
    "metricHeader":
    "metricHeaderEntries": [
    "name": "ga:users", "type": "INTEGER" ,
    "name": "ga:pageviews", "type": "INTEGER"
    ]

    ,
    "data": "totals": [ "values": ["0", "0"] ]

    ]




    I expect a result with rows like :




    "reports": [

    "columnHeader":
    "metricHeader":
    "metricHeaderEntries": [
    "name": "ga:users", "type": "INTEGER" ,
    "name": "ga:pageviews", "type": "INTEGER"
    ]

    ,
    "data":
    "rows": [ "metrics": [ "values": ["111", "257"] ] ],
    "totals": [ "values": ["111", "257"] ],
    "rowCount": 1,
    "minimums": [ "values": ["111", "257"] ],
    "maximums": [ "values": ["111", "257"] ]


    ]



    Thanks for your help.










    share|improve this question
























      0












      0








      0








      When a user register to my application, i check the monthly visitors of his website.



      Sometimes it happens that the report return empty rows and i don't know why. If someone have an idea.



       $content = json_encode([
      'reportRequests' => [
      [
      'viewId' => $extraParameters['viewId'],
      'dateRanges' => [
      [
      'startDate' => '30daysAgo',
      'endDate' => 'yesterday',
      ],
      ],
      'metrics' => [
      [
      'expression' => 'ga:users',
      ],
      [
      'expression' => 'ga:pageviews'
      ],
      ],
      ],
      ],
      ]);


      Sometimes i get that result :




      "reports": [

      "columnHeader":
      "metricHeader":
      "metricHeaderEntries": [
      "name": "ga:users", "type": "INTEGER" ,
      "name": "ga:pageviews", "type": "INTEGER"
      ]

      ,
      "data": "totals": [ "values": ["0", "0"] ]

      ]




      I expect a result with rows like :




      "reports": [

      "columnHeader":
      "metricHeader":
      "metricHeaderEntries": [
      "name": "ga:users", "type": "INTEGER" ,
      "name": "ga:pageviews", "type": "INTEGER"
      ]

      ,
      "data":
      "rows": [ "metrics": [ "values": ["111", "257"] ] ],
      "totals": [ "values": ["111", "257"] ],
      "rowCount": 1,
      "minimums": [ "values": ["111", "257"] ],
      "maximums": [ "values": ["111", "257"] ]


      ]



      Thanks for your help.










      share|improve this question














      When a user register to my application, i check the monthly visitors of his website.



      Sometimes it happens that the report return empty rows and i don't know why. If someone have an idea.



       $content = json_encode([
      'reportRequests' => [
      [
      'viewId' => $extraParameters['viewId'],
      'dateRanges' => [
      [
      'startDate' => '30daysAgo',
      'endDate' => 'yesterday',
      ],
      ],
      'metrics' => [
      [
      'expression' => 'ga:users',
      ],
      [
      'expression' => 'ga:pageviews'
      ],
      ],
      ],
      ],
      ]);


      Sometimes i get that result :




      "reports": [

      "columnHeader":
      "metricHeader":
      "metricHeaderEntries": [
      "name": "ga:users", "type": "INTEGER" ,
      "name": "ga:pageviews", "type": "INTEGER"
      ]

      ,
      "data": "totals": [ "values": ["0", "0"] ]

      ]




      I expect a result with rows like :




      "reports": [

      "columnHeader":
      "metricHeader":
      "metricHeaderEntries": [
      "name": "ga:users", "type": "INTEGER" ,
      "name": "ga:pageviews", "type": "INTEGER"
      ]

      ,
      "data":
      "rows": [ "metrics": [ "values": ["111", "257"] ] ],
      "totals": [ "values": ["111", "257"] ],
      "rowCount": 1,
      "minimums": [ "values": ["111", "257"] ],
      "maximums": [ "values": ["111", "257"] ]


      ]



      Thanks for your help.







      google-analytics-api






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 25 at 14:44









      SpawnradSpawnrad

      641 silver badge10 bronze badges




      641 silver badge10 bronze badges






















          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );













          draft saved

          draft discarded


















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55340401%2fgoogleanalytics-api-get-response-with-empty-rows%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.



















          draft saved

          draft discarded
















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55340401%2fgoogleanalytics-api-get-response-with-empty-rows%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

          Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript