I'm looking for the way to get big facebook video thumbnail. i've found some links:
http://graph.facebook.com/1571886379501082/picture ~> this one retun one small thumbnail picture with size 128x128.
and other one http://graph.facebook.com/1571886379501082/thumbnails ~> this one will return big thumbnail picture but it required access_token to get.
is it possible to get big thumbnail video picture without login on facebook?
This method will create an object array and seek the last key of the format, which is the big image.
$fb = file_get_contents('http://graph.facebook.com/1246538155392772'); $fb = json_decode($fb); //---find the big image which is always last in array $key = count($fb->format)-1; $bigimg = $fb->format[$key]->picture; echo '<img src="'.$bigimg.'" />';
If you just want to get the image for simple posting, just use this tool. Get Facebook Video Images