Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boo1ean/yelp-api-php
PHP wrapper for yelp business API v2
https://github.com/boo1ean/yelp-api-php
Last synced: 30 days ago
JSON representation
PHP wrapper for yelp business API v2
- Host: GitHub
- URL: https://github.com/boo1ean/yelp-api-php
- Owner: boo1ean
- Created: 2012-07-25T13:40:55.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-08-03T07:48:32.000Z (over 12 years ago)
- Last Synced: 2024-04-14T18:42:18.011Z (7 months ago)
- Language: PHP
- Homepage:
- Size: 105 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Based on https://github.com/Yelp/yelp-api/tree/master/v2/php
# Usage #
```php
YOUR_CONSUMER_KEY,
'consumer_secret' => YOUR_CONSUMER_SECRET,
'token' => YOUR_TOKEN,
'token_secret' => YOUR_TOKEN_SECRET
);// Create yelp business api driver
$yelp = new Yelp($config);// Returns json data if request is successful else throws YelpException
$data = $yelp->get('some-business-name');
```