A list of cookies that were set for the user as represented in FQL.
To access this table you need:
Use this query to receive a list with detailed information of all cookies that have been set for this user:
select uid, name, value, expires, path from cookies where uid = <uid>
| Indexable | Name | Type | Description |
|---|---|---|---|
| * | uid | string | The user ID associated with the cookie. |
| name | string | The name of the cookie. | |
| value | string | The value of the cookie. | |
| expires | int | Time stamp when the cookie should expire. If not specified, the cookie never expires. | |
| path | string | Path relative to the application's callback URL, with which the cookie should be associated. Default value is / |