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'm doing a Facebook Graph API call for "me/home" to get the user's news feed. As everyone knows, the URL you get in the "picture" field is a low resolution photo that doesn't look good at anything above 100x100. I know you can get the URL to the high resolution picture by doing another graph call for the "object_id" and using the "source" field in that result.

But I was looking at the URLs and thought there might be a way to transform one into the other without having to make another graph call. Either that, or construct the high resolution one from existing data in other fields. For example, the first URL is the low resolution one, and the second URL is the source resolution.

http://photos-d.ak.fbcdn.net/hphotos-ak-ash4/297313_10152643117455790_610095553_s.jpg
http://sphotos-b.xx.fbcdn.net/hphotos-ash4/297313_10152643117455790_610095553_n.jpg

It looks like the numbers are (something I don't know)_("object_id")_(something else I don't know)

Has anyone had experience with trying to change out the URLs while still keeping the numerical section in the middle? Are there typically variations that could cause regex problems?

EDIT: Here is the code I'm using.

String objectId = null;
if (jsonObject.has("object_id")) {
    objectId = jsonObject.getString("object_id");
}
String postPhoto = "http://graph.facebook.com/" + objectId + "/picture";

The check for if the post is a photo is a little earlier in the code, so it'll always run these lines for a post type of "photo".

share|improve this question

1 Answer

me/home - graph api has some a field called "object_id" and "type". If the type is "photo" then you will have this object_id value. By Using this object id and make another graph api call then you will get an objecty called "images". This object has several options ( different sizes ).

OR

Use object id like below and get a album sized version of a photo. and the supported types for this call are "thumbnail, normal, album".

https://graph.facebook.com/{object-id-from-feed}/picture?type=normal 

and also checkout this link under Examples of Supported Objects section.

share|improve this answer
Thanks. Your first solution is what I was trying to avoid (making two graph calls, one after the other). The second one may, work as long as the picture quality is high enough. I'll have to try it tonight. – Wenger Mar 12 at 12:13
I tried it didn't work so I removed the "?type=normal" expansion. Doing that loaded the stock Facebook question mark image for the majority of all the images except for a couple that actually loaded the correct ones. – Wenger Mar 13 at 3:00
please share your code, it helps to find out whats going. – thomasbabuj Mar 13 at 3:43
me/home will return news feed values, so please check for the post type. if its "Photo" you will have the object_id value using that you can call this in your url to get the images. – thomasbabuj Mar 13 at 3:48
That's just what I'm doing. I updated the post with a little bit of code. – Wenger Mar 13 at 3:56
show 1 more comment

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.