An FQL table containing information about videos.
| Name | Description |
|---|---|
| number | The ID of the album where the video belongs to |
created_time number | The date when the video being queried was added. |
description string | The description of the video being queried. |
embed_html string | The HTML code to embed the video. |
format array | An array of various video formats available with their embed_html code and resolution |
length number | The length of the video in seconds. |
link string | The URL to the video being queried. |
| number | The user ID of the owner of the video being queried. |
src string | The URL to thesource file for the standard quality version of the video. |
src_hq string | The URL to the source file for the high quality version of the video. |
thumbnail_link string | The URL to the thumbnail image for the video being queried. This URL may be blank. |
title string | The name of the video being queried. |
updated_time number | The date when the video being queried was last modified. |
| number | The ID of the video being queried. The vid cannot be longer than 50 characters. Note: Because the vid is a string, you should always wrap the vid in quotes when referenced in a query. The vid is unique only for a given user. You can use the vid as an object ID in the Graph API. |
To read video you need
access_token for publicly available videosuser_videos permissions for all videos owned by the user (including nonpublic videos)friends_videos permissions for videos owned by the user's friends (including nonpublic videos that the friend has allowed the user to view)