1

我知道根据http://developers.facebook.com/bugs/311146672312127使用 Open Graph API 检索附件是不可能的。FQL 呢?

SELECT attachment FROM message
WHERE thread_id = xxxxxxxxxxxxxxx AND viewer_id=xxxxxxxxxx LIMIT 925,1

给我:

{
  "data": [
    {
      "attachment": {
        "media": [
        ], 
        "name": "", 
        "caption": "", 
        "description": "", 
        "properties": [
        ], 
        "icon": "http://static.ak.fbcdn.net/rsrc.php/v2/yD/r/aS8ecmYRys0.gif", 
        "fb_object_type": "", 
        "fb_object_id": "", 
        "tagged_ids": [
        ]
      }
    }
  ]
}
4

1 回答 1

1

它似乎还不受支持。你可以使用这个:

在线程中查看附件

我猜它会在统一消息中得到支持。

于 2012-09-30T12:37:47.767 回答