Socket
Socket
Sign inDemoInstall

yelp-photo-client

Package Overview
Dependencies
2
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    yelp-photo-client

Get more photos from the Yelp API


Version published
0
Maintainers
1
Created
Weekly downloads
 

Readme

Source

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)

/*
[
  {
    thumbnail: 'https://s3-media0.fl.yelpcdn.com/bphoto/DJncdGT734WCDQ7V0Txfvg/300s.jpg',
    original: 'https://s3-media0.fl.yelpcdn.com/bphoto/DJncdGT734WCDQ7V0Txfvg/o.jpg'
  },
  {
    thumbnail: 'https://s3-media0.fl.yelpcdn.com/bphoto/bBEW89GQ7LwYWyyvvuV2KA/300s.jpg',
    original: 'https://s3-media0.fl.yelpcdn.com/bphoto/bBEW89GQ7LwYWyyvvuV2KA/o.jpg'
  },
  ...
]
*/

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'
})

FAQs

Last updated on 17 Nov 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc