2012-09-24 2 views
1

http://developers.facebook.com/bugs/311146672312127에 따르면 Open Graph API를 사용하여 첨부 파일을 검색 할 수 없다는 것을 알고 있습니다. FQL은 어떻습니까?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

은 아직 지원되지 않는 것 같습니다. 당신은이를 사용할 수 있습니다

View attachments in threads

그것은 unified_message에 supperted됩니다

, 같아요.

관련 문제