FeedsFacebookParser is doing a json_decode() on the result of the facebook feed.
It then iterates over $json->data but inspecting the $json object we can see that it should iterate over $json->entries.
Changing this line allows us to correctly import feeds as expected.