2

构建 Facebook 视频应用程序。用户可以通过在应用 og.like 中使用来收藏视频。

我用

$response = $facebook->api(
  'me/og.likes',
  'GET'

我会得到

"data": {
    "object": {
      "id": "1399918593560042", 
      "url": "http://some_url.com", 
      "type": "video.tv_show", 
      "title": "the_video_title"
    }

要获取我使用的网址。

$response = $facebook->api(
 'me/og.likes?app_id_filter=381977341837631',
 'GET'
);

foreach ( $response['data'] as $data ); 
$Object = $data['data']['object'];

然后

 <li class="program"><a class="thumbnail" data-transition="slide" href="<?php echo $Object['url']; ?>">
  <img src="IMG_URL"></a></li> 

问题是显示图像。如果我单击图形 API 中的 ID,我将得到

{
  "id": "1399918593560042", 
  "url": "http://some_url.com", 
  "type": "video.tv_show", 
 "title": "the_video_title", 
  "image": [
{
  "url": "https://v.redli.se/p/102/sp/10200/thumbnail/entry_id/0_53lzx39w/width/1024/height/720", 
  "secure_url": "https://v.redli.se/p/102/sp/10200/thumbnail/entry_id/0_53lzx39w/width/1024/height/720", 
  "type": "image/jpg", 
  "width": 1024, 
  "height": 576
}

我的问题是。我如何显示图像?

4

2 回答 2

1

在你得到 之后$Object\GET向这个对象发出请求——

$resp = $facebook->api($Object['id']);

然后从响应中获取图像 url-

if(isset($resp['image']))
{
   foreach ($resp['image'] as $image) 
   {
       echo $imag_url = $image['url'];
   }
}
于 2013-08-13T11:04:37.573 回答
1

基本上,您需要使用 Object id 发出请求,以从 Facebook Graph 获取所需的图像。

因此,在分配 $Object = $data['data']['object'] 之后,您可以简单地从http://graph.facebook.com/ $Object['id'] 获取 JSON 并获取图像。

示例代码:

$facebookJSON = file_get_contents("https://graph.facebook.com/" . $Object['id']);
$myArr = json_decode($facebookJSON, 1);
$myImage = $myArr['image']['url'];

$myImage 将是对象图像 url。

祝你好运,盖伊。

于 2013-08-06T14:22:35.233 回答