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.

is there any way to get profile pic of a user as it appears into timeline profile(the one shown into 135px*135px box)?

share|improve this question
Why don't you just get the full size image and scale it down? What language are you using? – Lix Feb 12 '12 at 18:39
1  
i am using php but i want it to be exactly as it appears into users timeline. – user1205466 Feb 12 '12 at 18:42

1 Answer

You can just take the result from /user/picture API call, which will be something like https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc4/275322_662949469_2141062370_q.jpg and replace the _q for _n, so it will be:

https://fbcdn-profile-a.akamaihd.net/hprofile-ak-snc4/275322_662949469_2141062370_n.jpg

Actually it's not 135x135, but that's the one facebook uses on timeline. In my case it's scaled down by 136x125 inside a 125x125 div with overflow: hidden, so everything more than 125x125 is hidden. You can take a look using DOM Inspector or Firebug

share|improve this answer
+1 for the replacement trick – nambrot Feb 14 '12 at 7:34
2  
there is no need to replace _q for _n you can get it directly from user/picture?type=large and that's not i am asking about what i am asking is how to get exactly the way it is shown in the timeline. – user1205466 Feb 18 '12 at 5:09
+1 for the ?type=large, but I answered your question too! If you use the DOM Inspector you'll notice that picture as being the large one, inside a 4px white border container, centered through javascript, exactly the same way I did on this site: meutunaosabeoqueaconteceu.com.br (on the posts section) – Leonel Feb 21 '12 at 23:19

Your Answer

 
discard

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