Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to fetch the information of a facebook event using a request by the Facebook SDK for Android, but I am getting a small image. The fetching procedure is done as follows:

params.putString("fields", "id,name,picture");
mAsyncRunner.request("me/events",params, new RequestListener() {.....

But the link to the JPG image is very small. Is there any way to get a better resolution of this image?

share|improve this question

1 Answer

up vote 2 down vote accepted

Once you know the EVENT_ID for a particular event, you can send a graph request to "EVENT_ID/picture?type=SIZE" where SIZE=small | normal | large.

share|improve this answer
Thanks for the answer – Sami Feb 28 at 15:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.