A simple, promise based JS module for the FourSqaure API dependent on jQuery.
Foursqaure.init({
id: 'CLIENT_ID',
secret: 'CLIENT_SECRET'
})
FourSqaure.getRestaurants({
'near': '...',
'limit': 50,
'categoryId': '...',
...
}).then(function(response) {
...
});
FourSqaure.getRestaurantMenu(venueObject, {...queryParams...});
FourSqaure.getRestaurantReviews(venueObject, {...queryParams...});