FQL:video
From Facebook Developer Wiki (FbDevWiki.com)
Query this table to return information about a video.
Columns
Highlighted rows are indexable / searchable and one is usually required in the WHERE portion of the query.
Name | Type | Description |
---|---|---|
vid | string | 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. |
owner | int | The user ID of the owner of the video being queried. |
title | string | The name of the video being queried. |
description | string | The description of the video being queried. |
thumbnail_link | string | The URL to the thumbnail image for the video being queried. This URL may be blank. |
embed_html | string | The HTML code to embed the video. |
updated_time | time | The date when the video being queried was last modified. |
created_time | time | The date when the video being queried was added. |
src | string | The source file for the standard quality version of the video. |
src_hq | string | The source file for the high quality version of the video. |
Examples
SELECT vid, owner, title, description, thumbnail_link, embed_html, updated_time, created_time FROM video WHERE owner= 1772156826