Questions tagged [yelp]

RESTful web services for getting business information.

Yelp's API program enables you to access trusted Yelp information in real time, such as business listing info, overall business ratings and review counts, deals and recent review excerpts.

Resources:

395 questions
3
votes
2 answers

Swift - can only print object's memory address

I'm using the Yelp API and pulling down a YLPBusiness. When I attempt to print() or dump() the YLPBusiness, I only receive the memory address in the console log. If I print(YLPBusiness.name) however, I will receive the name. How can I fully print…
Wade Sellers
  • 203
  • 4
  • 11
3
votes
0 answers

How to update business information on yelp using yelp API?

Is there any way that I can change or update business information on yelp using their API considering that i have appropriate login credentials?
user17422
  • 363
  • 1
  • 4
  • 11
3
votes
0 answers

Can't get Yelp API working with client side code?

I'm creating a React app with Firebase for basic backend functionality. I'm trying to use the Yelp API but am always getting a MISSING_PARAMETER and CORS errors. Here is my code: import OAuth from 'oauth-1.0a'; const oauth = OAuth({ consumer: { …
eytanfb
  • 443
  • 4
  • 16
3
votes
0 answers

Second jsonp http get request - using $q gives 404 error despite GET showing 200

I've found a couple of similar posts to this, but the answers (which boil down to putting callback=JSONP_CALLBACK into the get request) aren't working for me. Using that in the request generates an immediate 404 error, while using…
R.Paris
  • 31
  • 3
3
votes
1 answer

How to retrieve response JSON data with Swift

I am trying to use the Yelp API and receive the corresponding JSON according to a search term. Here is the YelpAPI Client I am using: import Foundation import UIKit let yelpConsumerKey = "KLGXXXXfnmhQ" let yelpConsumerSecret = "wPmXXXXvOA" let…
Varun Varahabotla
  • 528
  • 1
  • 5
  • 16
3
votes
0 answers

Implementing Yelp API Into iPhone App

I am trying to integrate Yelp's APIs for developers into my iPhone Application. I have taken the Objective-C Code from https://github.com/Yelp/yelp-api/ and I have simply dragged the files into my existing Xcode project. I input my token and keys,…
Varun Varahabotla
  • 528
  • 1
  • 5
  • 16
3
votes
1 answer

How do I use the Yelp API in Swift?

I don't know Objective-C. They have no code samples on their page for Swift. Has anyone used their new V2 API with Swift yet who can provide some examples or simple searches such as querying local restaurants nearby and more importantly how to…
Nathan McKaskle
  • 2,465
  • 7
  • 40
  • 79
3
votes
1 answer

Rails Yelp::Error::InvalidParameter - One or more parameters are invalid in request

I am building a web app using rails and using the yelp api through yelp api gem. The api was working until yesterday, I got this error: Yelp::Error::InvalidParameter - One or more parameters are invalid in request I haven't changed any code. Here…
Yash
  • 4,775
  • 3
  • 26
  • 59
3
votes
1 answer

How can I get website from Yelp API

How can I can get the website URL in the response when get the business details from the following API call? You can check the results of response: https://www.yelp.com/developers/documentation/v2/search_api There's no website details in the…
Kevin medou
  • 49
  • 12
3
votes
1 answer

Need to resolve Yelp Response: "Signature was invalid" using PHP code Sample

Hey I'm trying to integrate the Yelp API into my cakephp website and get an "Signature was invalid" error. I tried to find out the reason for my issue with the help of google and stackoverflow, but couldn't solve it I use the following code: public…
Any1
  • 173
  • 1
  • 14
3
votes
1 answer

Writing HTTP Headers in XML

I have to code this HTTP Request to Yelp API in XML GET /v2/business/yelp-san-francisco HTTP/1.1 Host: api.yelp.com Authorization: OAuth…
user3599703
3
votes
0 answers

Possible to get images of food from the Yelp API v2?

Is it possible to get images of food using the Yelp API v2? I'm specifically looking for images like in the screenshot below:
gibbo
  • 247
  • 2
  • 4
  • 12
3
votes
0 answers

Problems with Merging: 'by' must specify a uniquely valid column

I am having a problem mergin my datasets together. I get the above error message after I run the last line of code. However, both data sets have the same column name. The head of avgRev2 is: avgRev restaurantType 1 33 …
SJSU2013
  • 525
  • 3
  • 7
  • 17
3
votes
1 answer

Can I use RestKit 0.20.3 to submit a request with OAuth parameters required by Yelp?

I am writing an iOS app that requests data from Yelp. I currently have code that manages Yelp requests/responses and parses the JSON data returned internally. The current code builds the OAuth parameters for its requests using OAuthConsumer by Jon…
Carl Smith
  • 1,065
  • 13
  • 18
3
votes
1 answer

any way to get business data using URL of yelp?

I am new to using API of YELP to get business data. I have a only business URL like "http://www.yelp.com/biz/1886-cafe-and-bakery-austin" OR "1886-cafe-and-bakery-austin". Any way to get business perticular that url data using any API in…
harsh4u
  • 2,380
  • 3
  • 21
  • 38
1 2
3
26 27