In the Facebook Graphics API, I try to get a large image of each user in the search results. The following call will give me a small image of each user:
https://graph.facebook.com/search?q=Bob%20Grossman&fields=name,id,picture&limit=10&type=user&access_token= *
It's pretty easy to get a large image for one user by adding the type = large parameter. But it seems that this is ignored in the search (perhaps because the "type" parameter is already used there, used to filter the search results). Is there a way to do this using the Graph API?
Thank!
source
share