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 using https://developers.facebook.com/tools/debug to determine what facebook sees from my page.

When I'm doing for my page, a Facebook scrape is returning a 500 error only because of this line

$photoObj=$facebook->api("/$photoId?access_token=$access_token");

although the page is executing correctly??

Any idea??

share|improve this question
That error is in your own code - do all those variables have values? bear in mind the scraper operates in a logged-out context – Igy May 30 '12 at 18:15
I've noticed one more thing with the scrapper, it doesn't sees image URL like this --> a3.sphotos.ak.fbcdn.net/hphotos-ak-ash3/… – Noor May 30 '12 at 18:46
Yeah, you have to host your own images, not use Facebook's CDN – Igy May 30 '12 at 19:14

1 Answer

up vote 0 down vote accepted

I've changed the technique of retrieving the image, now I do it like this:

$access_token=$facebook->getAccessToken();
$photoObj=file_get_contents("https://graph.facebook.com/$photoId?access_token=$access_token");
$photoObj=json_decode($photoObj);
$picURL=$photoObj->source;

and it works :-)

share|improve this answer

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.