2011-11-15 44 views

回答

0

所有你需要做的就是這樣的查詢的圖形API:

https://graph.facebook.com/{photo_id}

,你會收到你所需要的數據...

{ 
"id": "{photo_id}", 
"from": { 
    "name": "{user_that_uploaded_the_photo}", 
    "id": "123" 
}, 
"tags": { 
"data": [ 
    { 
    "id": "123", 
    "name": "Lior", 
    "x": 48.5099, 
    "y": 37.5276, 
    "created_time": "2011-10-11T05:50:35+0000" 
    }, 
    { 
    "id": "456", 
    "name": "Shlain", 
    "x": 19.0397, 
    "y": 35.3201, 
    "created_time": "2011-10-11T05:50:40+0000" 
    }, 
    { 
    "id": "789", 
    "name": "Abigail", 
    "x": 76.8212, 
    "y": 47.4614, 
    "created_time": "2011-10-11T05:50:32+0000" 
    } 
... 

您可以使用graph api explorer這些實驗方法...
祝你好運!

+0

我這麼認爲。剛發現你的帖子後3分鐘>< – user1047504

+0

比從來沒有更好=]然而,我沒有看到一種方法來做到這一點只使用fql ... – Lix

相關問題