如何使用FQL检索邮件附件?

时间:2012-09-24 14:55:56

标签: facebook message facebook-fql messaging

我知道根据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": [
        ]
      }
    }
  ]
}

1 个答案:

答案 0 :(得分:1)

似乎还没有支持。你可以用这个:

View attachments in threads

我想,它将在unified_message中提供支持。