0

私が必要としているのは、別の Web サイトに埋め込むためのウィジェットまたは静止画像として利用できる、グラフに表示される単一のページ名のページビューの進化です。Piwik Web サイト自体で、このグラフを利用できます。[アクション] -> [ページ タイトル] に移動し、特定のページ タイトルにカーソルを合わせます -> 2 つのアイコンが表示され、そのうちの 1 つ (「行の展開を開く」) はエクスポートしたいグラフにつながります.

API を使用して、単一のページで統計を取得できます。

index.php?method=Actions.getPageTitle&pageName=PageNameIWant&date=last10&period=month&module=API&idSite=6&token_auth=anonymous

また、グラフを生成することもできます。

index.php?module=API&method=ImageGraph.get&idSite=6&token_auth=anonymous&period=day&date=last100&apiModule=Actions&apiAction=getPageTitles

But I can't seem to find a way to combine the two to generate a graph showing the pageview evolution of a single page. Note that the first call uses the 'getPageTitle' method, while the second uses 'getPageTitles'. Using 'getPageTitle' in the second call generates an error (not supported)... I'd leave it at that if it weren't for the fact that the actual graph I'm looking for is available on the Piwik website itself, so there probably is some way to generate it.

4

1 に答える 1