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.

im using the graph API to get feeds , in the feeds i have message , picture key and its value looks like formated link that riderects somehow . how can i get this picture ? if i have this :

  "picture": "http://external.ak.fbcdn.net/safe_image.php?d=AQBuv4KHE_CDlCPV&w=130&h=130&url=http00253A00252F00252Fi1.ytimg.com00252Fvi00252F8dWcLkK62lM00252Fhqdefault.jpg",
share|improve this question

1 Answer

up vote 1 down vote accepted

What you have here looks like URL encoded with something like:

var uri = 'http://i1.ytimg.com/vi/8dWcLkK62lM/hqdefault.jpg';
encodeURIComponent(uri).replace(/%/g, '0025')

You may decode it with:

var encodedURI = 'http00253A00252F00252Fi1.ytimg.com00252Fvi00252F8dWcLkK62lM00252Fhqdefault.jpg';
decodeURIComponent(decodeURIComponent(encodedURI.replace(/00/g,'%')))
share|improve this answer
how did you get the first result? im trying to do this with c++ – user63898 Jan 9 '12 at 15:10

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.