アプリケーションをインストールしたユーザーの数を取得しようとしています。情報に基づいて作成された fql クエリを送信しています。
https://developers.facebook.com/docs/reference/fql/insights/#Metrics
この指示により、期間「lifetime」と end_time が指定されていないメトリック「application_installed_users」を呼び出す必要があります。
https://developers.facebook.com/tools/で呼び出してみました:
SELECT metric, value FROM insights WHERE object_id=<my_app_id> AND metric='application_installed_users' AND period=period('lifetime')
このクエリでは、次のエラーが発生します。
{
"error": {
"message": "You must specify a bounded date range using unix time stamps as constant values.",
"type": "NoIndexFunctionException",
"code": 604
}
}
だから私も試しました:
SELECT metric, value FROM insights WHERE object_id=<my_app_id> AND metric='application_installed_users' AND end_time=0 AND period=period('lifetime')
空のデータになります。
「application_installed_users」を呼び出すための適切なクエリは何ですか??
乾杯、マシーク