Link (FQL)
From Facebook Developer Wiki
Description
The FQL link table. Query this table to return the links the current user has posted.
To structure your query, use the table name (link in this case) in the FROM clause. The items in the Name column correspond to columns in the table that can be referenced in the SELECT and WHERE clauses.
In order to make your query indexable, the WHERE in your query should contain an = or IN clause for the link_id or owner column.
Columns
| Indexable | Name | Type | Description | |
| * | link_id | int | The unique identifier for the link. | |
|---|---|---|---|---|
| * | owner | int | The user ID for the user who posted the link. | |
| owner_comment | string | The comment the owner made about the link. | ||
| created_time | time | The time the user posted the link. | ||
| title | string | The title of the link, as taken from the site's title meta tag. | ||
| summary | string | A summary of the link, as taken from the site's description meta tag. | ||
| url | string | The actual URL for the link. | ||
| image_urls | array | The URLs to the images associated with the link, as taken from the site's link tag. |
