Dharmendra Kumar Rajan
Dharmendra Kumar Rajan

Reputation: 229

How to get high resolution photos from Facebook news feeds in iOS SDK

I am developing an iPad application having functionality of fetching newsfeed from Facebook.but i am not able to get a High resolution newsfeed picture like Facebook iPad application. I have follow Facebook developer site but unable to get information related to this. Please suggest.Thanks in advance.

Upvotes: 1

Views: 576

Answers (1)

Niraj Shah
Niraj Shah

Reputation: 15457

In your App, modify your API call to include the full_picture field to get larger images where possible. E.g.:

/me/feed?fields=id,name,full_picture,story,message,picture

The downside is that you'll need to include the names of all the fields you need from the API. My example above only includes a subset of the fields that Facebook provides.

Upvotes: 2

Related Questions