Permissions (FQL)

From Facebook Developer Wiki

Jump to: navigation, search


Description

The FQL permissions table. Query this table to return the extended permissions the current user has granted to the application.

To structure your query, use the table name (permissions 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 uid column.

Columns

IndexableNameTypeDescription
* uid int The user ID of the current user, or the page_id of the Page.
status_update bool Indicates whether the user allows your application to update the user's status with stream.publish, status.set, or users.setStatus.
photo_upload bool Indicates whether the user allows your application to upload and tag photos on the user's behalf.
sms bool Indicates whether the user allows your mobile application to send the user SMS text messages and to respond to text messages from the user.
offline_access bool Indicates whether the user allows your application to access that user's data when the user is offline or doesn't have an active session. This permission can be obtained only through the fb:prompt-permission tag or the promptpermission attribute.
email bool Indicates whether the user allows your application to send email to the user. This permission can be obtained only through the fb:prompt-permission tag or the promptpermission attribute.
create_event bool Indicates whether the user allows your application to create and modify events for a user via the events.create, events.edit, and events.cancel methods.
rsvp_event bool Indicates whether the user allows your application to RSVP to an event on behalf of the user via the events.rsvp method.
publish_stream bool Indicates whether the user allows your application to publish directly to his or her stream using stream.publish.
read_stream bool Indicates whether the user allows your application to read from his or her stream using stream.get.
share_item bool Indicates whether the user allows your application to share an item on his or her behalf.
create_note bool Indicates whether the user allows your application to create a note on his or her behalf.
bookmarked bool Indicates whether the user bookmarked your application.

See Also

reference