Yelp Image Helper
The Yelp Business API only gives you a maximum of 3 photos. This client scrapes the Yelp pages by business ID to provide more photos.
Requirements
The only info this package needs to work is the ID of the business that you wish to obtain photos for.
This package doesn't require an API key, but you will need one if you plan to find ID's using the Yelp API.
Usage
npm install yelp-photo-client
getPhotos = require('yelp-photo-client');
getPhotos(some_business_id)
.then(console.log)
getPhotos
is an async method that returns a promise of an array of photos.
Query Params
Query params can be optionally passed to the getPhotos
method to be appended to the requests.
Known useful parameters are:
start
: A number offset for the first image returned. Useful for pagination since scraping can only return a subset of all results with a single request.tab
: A string representing the Yelp tab to scrape from (i.e. food
, inside
, outside
, drink
, menu
)
getPhotos(some_business_id, {
start: 30,
tab: 'food'
})