Request multiple readings in a single API call

Is it possible to request more than one metric metric in a single API call?

For example, to get daily added likes for a page, I made the following call:

https://graph.facebook.com/_object_id_/insights/page_fan_adds_unique/day/

But I would like to add one more metric, for example, page_fan_removes_unique.

Requesting an insights object completely is an opportunity, but it gives me too much data that I don’t need, which reduces performance.

+5
source share
2 answers

Yes, you can run multiple FQL queries in a single API call and then analyze the various results.

multi query: http://developers.facebook.com/docs/reference/rest/fql.multiquery/

: http://developers.facebook.com/docs/reference/fql/insights/

+1
+2

All Articles