API Endpoint: List a User's Favorites
Get a list of all guides that a user has favorited. They can favorite guides by clicking the 'star' favorite icon or by saving a guide for offline browsing. If want to support saving guides for offline browsing in your app, contact us for beta access to write new favorites.
Request
GET /api/1.0/user/{userid}/favorites GET Parameters
| jsonp | Optional. String. The name of a Javascript function to call with the results. See JSONP. |
Example Request
/api/1.0/user/84700/favorites
Example Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | [
{
"date":1309472242,
"guideid":5994
},
{
"date":1307129648,
"guideid":5864
},
{
"date":1305931756,
"guideid":5825
},
{
"date":1305928853,
"guideid":5794
}
]
|