dsadsadsa1231 2015-11-13 15:38
浏览 51
已采纳

Facebook PHP SDK按页面ID循环事件(带事件图片)

I'm trying to get all events by a certain page id, including the event picture. I've succeeded in this, but this method i'm using is very, very slow. I will try to explain the method as good as possible.

Step 1

$request = new FacebookRequest(
  $session,
  'GET',
  '/{page-id}',
  array(
    'fields' => 'events'
  )
);

I use this request to get all the events by the page id. This returns me an array with all the events. However, this array doesn't include the picture that belongs to each event. To get this fixed, I used a second loop to get the event picture by each unique event.

Note, before this loop I made sure that the array only exists of events that are yet to take place as well as a limit of loops (i.e. 5)

Step 2

 $request = new FacebookRequest(
    $session,
    'GET',
    '/$eventId', // this is the unique event id per event
    array(
      'fields' => 'cover'
    )
 );

This now gives me the cover of each unique event. It works, but it's sure not pretty. Also, it makes the page very, very slow as it has to loop though 6 requests before loading the page.

Is there anyone that can help me to figure out how to get all this information within one request? I am sure that there is someone willing to help.

Thanks in advance!

  • 写回答

1条回答 默认 最新

  • dtq7387 2015-11-13 15:50
    关注

    Instead of requesting the events as a “field”, you can use

     /page-id/events?fields=cover,description,…
    

    But if you have a reason for requesting it as a field (like because you want to request other fields from the page in the same go), you can do that as well, using Field Expansion – https://developers.facebook.com/docs/graph-api/using-graph-api/v2.5#fieldexpansion

    /page-id?fields=events{description,cover,…}
    

    cocacola?fields=events{description,cover}

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 微信小程序协议怎么写
  • ¥15 c语言怎么用printf(“\b \b”)与getch()实现黑框里写入与删除?
  • ¥20 怎么用dlib库的算法识别小麦病虫害
  • ¥15 华为ensp模拟器中S5700交换机在配置过程中老是反复重启
  • ¥15 java写代码遇到问题,求帮助
  • ¥15 uniapp uview http 如何实现统一的请求异常信息提示?
  • ¥15 有了解d3和topogram.js库的吗?有偿请教
  • ¥100 任意维数的K均值聚类
  • ¥15 stamps做sbas-insar,时序沉降图怎么画
  • ¥15 买了个传感器,根据商家发的代码和步骤使用但是代码报错了不会改,有没有人可以看看