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:

418 questions
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
  • 585
  • 3
  • 8
  • 18
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,236
  • 15
  • 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,550
  • 4
  • 24
  • 39
3
votes
2 answers

OAuth with Android

I am attempting to access the Yelp API. I have obtained my keys and have read about 40 articles explaining what I need to do and I have attempted everything. The key and what not are valid. I am getting the following: 05-16 17:39:54.955:…
Zach Dain
  • 31
  • 1
  • 3
2
votes
1 answer

How to share reviews using yelp in android

In one of my android app, I need to integrate yelp in the app. Actually , I need to post users reviews to yelp and check users Reviews using Yelp Business API . Please give me some hints or examples that how can we post reviews using yelp's API and…
Dinesh Sharma
  • 11,533
  • 7
  • 42
  • 60
2
votes
1 answer

ValueError: Either 'hosts' or 'cloud_id' must be specified ; while running elasticsearch

from elasticsearch import Elasticsearch, helpers es = Elasticsearch() while running the above code facing the below error: ValueError Traceback (most recent call last) Input In [15], in () 1…
2
votes
1 answer

iPhone App: Yelp Api integration problem

in My iPhone App I want to integrate Yelp API for that I download Yelp example from GitHub I tried to Add All library files ,both Frameworks for Yelp and Github into my project but still I am not able to reference the files which are in framework"s…
ios
  • 6,134
  • 20
  • 71
  • 103
2
votes
2 answers

Identify US county from from latitude and longitude using Python

I am using the codes below to identify US county. The data is taken from Yelp which provides lat/lon coordinate. id latitude longitude 1 40.017544 -105.283348 2 45.588906 -122.593331 import pandas df =…
2
votes
2 answers

Yelp Scraping, Python Difficulty Obtaining Motels

I am looking to use a scraper to return Yelp reviews for motels within a town. What I need to be able to do is search the reviews for key words, such as "mold", and be provided the motel back, along with the review itself. I have some code (I am…
Lindsay B
  • 21
  • 3
2
votes
3 answers

Extra curly braces in web api response makes response unabale to convert to model

I am trying to read Yelp API. Below is my code. public async Task InvokeApi(string path, HttpAction action, HttpContent content = null, TimeSpan? overrideTimeout = null, string externalServer = null) { var sUrl =…
2
votes
1 answer

Yelp android studio VALIDATION_ERROR

I am trying to integrate the YELP API within an application in Android Studio. I am trying to acquire an access token using a post request in Postman. However, when I send the post request I get this error returned in JSON format: { "error": { …
Simeon Ikudabo
  • 2,152
  • 1
  • 10
  • 27
2
votes
1 answer

Methods inside javascript promises not running on dialogflow

So this is the code for yelp-fusion node.js API used in dialogflow v2. Problem: agent.add(response.jsonBody.businesses[0].name); which should make the bot say the name of the business doesnt actually run even though the code is there. From research,…
Denise
  • 133
  • 1
  • 2
  • 10
2
votes
1 answer

How to use Yelp's new API

I am pretty new to programing so I am sure this is not correct but its the best I can do based on my research. Thanks. import pandas as pd import numpy as np import requests import…
satoshi
  • 439
  • 3
  • 14
2
votes
1 answer

How to make a Yelp API GET request on postman?

I wanted to use yelp api and I have obtained the access token from Yelp. I was trying to make a get request on Postman and I was getting the following error. { "error": { "code": "VALIDATION_ERROR", "description": "Please specify…
user7508299
  • 31
  • 1
  • 4
2
votes
0 answers

How to make GET request to Yelp api using volley?

I am using Volley to make get request to Yelp Api and keep getting "BasicNetwork.performRequest: Unexpected response code 400 for https://api.yelp.com/v3/businesses/search" error. I made GET request on Postman using the same parameters and headers…
jarge
  • 185
  • 9