Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question

1 Answer

up vote 0 down vote accepted

I would first start troubleshooting your access token. Ensure your access token has the appropriate permissions. Secondly, ensure the queries run independently of each other by running each one separately thru the normal FQL. You can play around with the FQL structure using the Graph API Explorer tool https://developers.facebook.com/tools/explorer

share|improve this answer
ok thank you very much – Anant Ghate Jan 9 '12 at 12:30

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.