2014-04-06 85 views
4

我想從一個時間表後一個Facebook video對象:從Facebook時間線後獲取視頻對象(或視頻ID)

  1. 我越來越從圖形API /我的/ home
  2. 職位
  3. 我可以輕鬆地獲得通過返回的OBJECT_ID
  4. 問題照片對象有用於視頻後期型

    { 
        "id": "750834774_10152138100019775", 
        "from": { 
         "id": "750834774", 
         "name": "Emilie Volpi" 
        }, 
        "message": "haha le monde qui fait une analyse geopolitique de games of thrones^^ une bonne manière de se remettre à jour pour la nouvelle saison demain !!!!!", 
        "picture": "https://fbexternal-a.akamaihd.net/safe_image.php?d=AQCclQTe2bPMIcrY&w=130&h=130&url=http%3A%2F%2Fs2.dmcdn.net%2FEHFV4%2F526x297-mO8.jpg", 
        "link": "http://www.dailymotion.com/video/x1lu3ke_game-of-thrones-comprendre-la-crise-a-westeros-en-4-minutes_news", 
        "source": "http://www.dailymotion.com/swf/video/x1lu3ke?autoPlay=1", 
        "name": "« Game of Thrones » : comprendre la crise à Westeros en 4 minutes", 
        "caption": "www.dailymotion.com", 
        "description": "Guerre des cinq rois, pression des marcheurs blancs et des sauvageons au nord, retour des dragons à l’est… le Royaume des Sept couronnes est plongée dans une crise politique sanglante depuis plus d’un an. Le Monde vous propose un décryptage de la crise en quatre minutes mais attention… spoilers !", 
        "icon": "https://fbstatic-a.akamaihd.net/rsrc.php/v2/yj/r/v2OnaTyTQZE.gif", 
        "actions": [ 
         { 
         "name": "Comment", 
         "link": "https://www.facebook.com/750834774/posts/10152138100019775" 
         }, 
         { 
         "name": "Like", 
         "link": "https://www.facebook.com/750834774/posts/10152138100019775" 
         } 
        ], 
        "privacy": { 
         "value": "" 
        }, 
        "type": "video", 
        "status_type": "shared_story", 
        "application": { 
        "name": "Links", 
        "id": "2309869772" 
    }, 
    "created_time": "2014-04-06T09:39:57+0000", 
    "updated_time": "2014-04-06T09:39:57+0000", 
    "likes": { 
        "data": [ 
         { 
         "id": "1283687218", 
         "name": "Max Imus" 
         } 
        ], 
        "paging": { 
         "cursors": { 
          "after": "MTI4MzY4NzIxOA==", 
          "before": "MTI4MzY4NzIxOA==" 
         } 
        } 
        } 
    }, 
    
沒有價值的object_id

正如你可以看到有沒有視頻ID,所以我不能讓視頻

我的目標是檢索來自video對象embed_html

請告訴我該怎麼做(圖API或FQL查詢)

回答

1

我想你只能得到實際上託管在Facebook上的視頻的embed_html。您正在使用的示例託管在dailymotion上,並且僅在帖子中引用。這是主要區別。

我想你可以使用下面的FQL得到嵌入視頻網址:

select attachment.media.video.source_url from stream where post_id='750834774_10152138100019775' 

然後,您可以dynmically包括在您的網頁,如果你通過SOURCE_URL內容的iframe,例如

src屬性
+0

你可能是對的,我相信Facebook也擁有所有共享視頻的embed_html。我不需要再次檢索source_url,因爲我已經得到了它:)問題是我嘗試在Android上下文中,並且WebView並不總是讀取source_url(flash ...) –

+0

那麼,我認爲它不是真的有可能你想在這裏實現... – Tobi