ga:pageviews
I can only get the total page views for a certain period of time
The following figure is the analysis result I expected
$pageViews = $analyticsService->getPageViewsDateRange($viewId,'30daysAgo','today')
I useGoogle Analytics API Symfony Bundle
//Get daily views for the past week
$pageView = $analyticsService->getDataDateRangeMetricsDimensions($viewId, '7daysAgo', 'today', ['pageviews'], ['date']);
//Get page views every hour of the day
$pageView = $analyticsService->getDataDateRangeMetricsDimensions($viewId, 'today', 'today', ['pageviews'], ['hour']);