餐厅菜单搜索Api
我想开发一个应用程序,它可以搜索给定位置的餐厅并显示餐厅的菜单详细信息。
是否有任何现有的 API 可供我重复使用来开发此类餐厅搜索?
I'm would like to develop an application which searches restaurants in a given location and also displays the restaurant's menu details.
Are there any existing APIs which I could reuse to develop such a restaurant search?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,您可以使用雅虎本地搜索 API 来实现此目的。请参阅此链接以获取更多信息。
http://developer.yahoo.com/search/local/V3/localSearch.html
yes you can use Yahoo local search API for this. see this link for more info..
http://developer.yahoo.com/search/local/V3/localSearch.html
您还可以尝试使用 Locu API
文档:https://dev.locu.com/documentation/
我用来按位置获取餐厅菜单信息的基本查询如下所示:
然后我使用 http://curl.trillworks。 com 将我的查询转换为 python (使用请求模块)实际执行数据拉取。我希望这有帮助!
You can also try using the Locu API
Documentation: https://dev.locu.com/documentation/
The basic query that I used to get menu information of restaurants by location is shown below:
I then used http://curl.trillworks.com to convert my query into python (with the requests module) to actually perform the data pull. I hope this helps!