In my Facebook web app I have to get the profile images of many Facebook accounts ( Only part of them are the user's Facebook friends ). I used the following code to get the information:
FB.api(facebookid, {
fields: "id, name, picture.type(large)"
}, function (response) {
if (response && response.picture) {
} else {
}
});
The problem is I have to make to many calls to the api so I reached the limit very quickly.
Reference: developers.facebook.com/docs/reference/ads-api/api-rate-limiting/
Suppose I want to get the profile images and names of 1000 accounts, is it possible to get all these information will a single call instead of 1000 calls?