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 trying to get the number of users who have installed my application. I am sending a fql query built based on the information:

https://developers.facebook.com/docs/reference/fql/insights/#Metrics

Due to this instruction i need to call for metric 'application_installed_users' with period 'lifetime' and end_time not specified.

I tried in https://developers.facebook.com/tools/ to call:

SELECT metric, value FROM insights WHERE object_id=<my_app_id> AND metric='application_installed_users' AND period=period('lifetime')

This query gives the following error:

{ "error": { "message": "You must specify a bounded date range using unix time stamps as constant values.", "type": "NoIndexFunctionException", "code": 604 } }

so I also tried:

SELECT metric, value FROM insights WHERE object_id=<my_app_id> AND metric='application_installed_users' AND end_time=0 AND period=period('lifetime')

whick results in empty data.

What is the proper query for calling for 'application_installed_users' ??

Cheers, Maciek

share|improve this question

2 Answers

If you look at Facebook's documentation for the insights table, you'll see some fields marked with a half-filled star. These are their index fields, and you must supply values for all of these fields in your WHERE clause.

In your case, you're receiving an empty data package because you're asking for end_time=0, which is limiting the data to the start of epoch time. Try supplying recent end_time and that should solve your issue.

share|improve this answer

I just used this ... AND end_time = end_time_date('2013-04-04') ... and it worked.

share|improve this answer

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.