0

i am usig Facebook fql.multiquery to fetch data with command line. like this

$queries = '{
        **"query1" : "SELECT metric, value 
                    FROM insights WHERE object_id=148945955209922 
                    AND metric="application_active_users" 
                    AND end_time=end_time_date("2011-12-10") 
                    AND period=period("month")",
        "query2" : "SELECT metric, value 
                    FROM insights WHERE object_id=148945955209922 
                    AND metric="application_active_users_city" 
                    AND end_time=end_time_date("2011-12-10") 
                    AND period=period("month")"
    }';

But while running this code it is showing empty Array.

can anybody help me?

4

1 に答える 1

0

まず、アクセス トークンのトラブルシューティングを開始します。アクセス トークンに適切なアクセス許可があることを確認します。次に、通常の FQL を使用してクエリを個別に実行することにより、クエリが互いに独立して実行されるようにします。Graph API Explorer ツールhttps://developers.facebook.com/tools/explorerを使用して、FQL 構造をいじることができます。

于 2012-01-02T17:00:24.600 に答える