Application (FQL)
From Facebook Developer Wiki
Description
The FQL application table. Query this table to return read-only properties about an application.
To structure your query, use the table name (application 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 one of the columns marked with a * in the Indexable column of the table.
The See Also section lists API functions that work on similar data; their documentation pages contain additional information about the contents of the column and example FQL queries.
Columns
| Indexable | Name | Type | Description | |
| * | app_id | int | The ID of the application being queried. | |
|---|---|---|---|---|
| * | api_key | string | The API key of the application being queried. | |
| * | canvas_name | string | The string appended to apps.facebook.com/ to navigate to the application's canvas page. | |
| display_name | string | The name of the application. | ||
| icon_url | string | The URL identifying the application's icon image. | ||
| logo_url | string | The URL identifying the application's logo image. | ||
| company_name | string | The name of the company that built the application. Note: Only one of company_name and developers will contain data, never both. | ||
| developers | string | A list of records, where each record identifies a Facebook user who is marked as a developer of the application. Note: Only one of company_name and developers will contain data, never both. | ||
| description | string | The description of the application, as provided by the developer. | ||
| daily_active_users | int | The number of Facebook users who've used the application in the last day. | ||
| weekly_active_users | int | The number of Facebook users who've used the application in the last seven days. | ||
| monthly_active_users | int | The number of Facebook users who've used the application in the last 30 days. | ||
| category | string | The category the application can be found under. | ||
| subcategory | string | The subcategory the application can be found under. |
