如何获得大的Facebook视频缩略图 [英] How to get big facebook video thumbnail

查看:119
本文介绍了如何获得大的Facebook视频缩略图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在寻找获得大型Facebook视频缩略图的方式。
我找到一些链接:

I'm looking for the way to get big facebook video thumbnail. i've found some links:

http://graph.facebook.com/157188​​6379501082/picture
〜>这一个重新调整一个小尺寸为128x128的小缩略图。

http://graph.facebook.com/1571886379501082/picture ~> this one retun one small thumbnail picture with size 128x128.

另一个
http://graph.facebook.com/157188​​6379501082/thumbnails
〜>这个将返回大的缩略图,但它需要access_token才能得到。

and other one http://graph.facebook.com/1571886379501082/thumbnails ~> this one will return big thumbnail picture but it required access_token to get.

是否可以获取大缩略图视频图片而无需在Facebook上登录? p>

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.'" />';

如果您只想获取图像进行简单发布,只需使用此工具即可。 获取Facebook视频图像

If you just want to get the image for simple posting, just use this tool. Get Facebook Video Images

这篇关于如何获得大的Facebook视频缩略图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆