I would like to implement business api in my mobile application. and
for example i am searching for "Donuts" in Houston, Tx. And also i
have Consumer Key, Consumer Secret, Token and Token Secret values.
Now i need to create a URL to fetch the JSOn data and then i can bind
the data to my page Look and feel.
Your business request URL would be looking something like this, http://api.yelp.com/v2/business/<yelpBizId received as part of first search request for a particular business(restaurant)>
The above is not the full request URL again, along with this you need to use OAuth methods to sign your request with all the keys available for you.
Please find the attached 'index.html' for a sample implementation, but this only contains the implementation for making the initial search request API. You need to follow the same method to make the business API request after you've got the search results.
Hope this would help you kick started with Yelp API usage.
On Wednesday, April 25, 2012 2:59:44 PM UTC+5:30, Sharath wrote:
> Hi,
> I would like to implement business api in my mobile application. and > for example i am searching for "Donuts" in Houston, Tx. And also i > have Consumer Key, Consumer Secret, Token and Token Secret values. > Now i need to create a URL to fetch the JSOn data and then i can bind > the data to my page Look and feel.
> Your business request URL would be looking something like this,
> http://api.yelp.com/v2/business/<yelpBizId received as part of first
> search request for a particular business(restaurant)>
> The above is not the full request URL again, along with this you need to
> use OAuth methods to sign your request with all the keys available for you.
> Please find the attached 'index.html' for a sample implementation, but
> this only contains the implementation for making the initial search request
> API. You need to follow the same method to make the business API request
> after you've got the search results.
> Hope this would help you kick started with Yelp API usage.
> Cheers,
> Prem
> On Wednesday, April 25, 2012 2:59:44 PM UTC+5:30, Sharath wrote:
>> Hi,
>> I would like to implement business api in my mobile application. and
>> for example i am searching for "Donuts" in Houston, Tx. And also i
>> have Consumer Key, Consumer Secret, Token and Token Secret values.
>> Now i need to create a URL to fetch the JSOn data and then i can bind
>> the data to my page Look and feel.
> To post to this group, send email to
> yelp-developer-support@googlegroups.com.
> To unsubscribe from this group, send email to
> yelp-developer-support+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/yelp-developer-support?hl=en.
Thanks for the information. Implemented the Business API with the help of oauth.js and sha1.js and Consumer Key, Consumer Secret, Token and Token Secret values. Do you have any sample code without using the above mentioned .js files? Once again Thanks Prem.
>> Your business request URL would be looking something like this, >> http://api.yelp.com/v2/business/<yelpBizId received as part of first >> search request for a particular business(restaurant)>
>> The above is not the full request URL again, along with this you need to >> use OAuth methods to sign your request with all the keys available for you.
>> Please find the attached 'index.html' for a sample implementation, but >> this only contains the implementation for making the initial search request >> API. You need to follow the same method to make the business API request >> after you've got the search results.
>> Hope this would help you kick started with Yelp API usage.
>> Cheers, >> Prem
>> On Wednesday, April 25, 2012 2:59:44 PM UTC+5:30, Sharath wrote:
>>> Hi,
>>> I would like to implement business api in my mobile application. and >>> for example i am searching for "Donuts" in Houston, Tx. And also i >>> have Consumer Key, Consumer Secret, Token and Token Secret values. >>> Now i need to create a URL to fetch the JSOn data and then i can bind >>> the data to my page Look and feel.
>> To post to this group, send email to >> yelp-developer-support@googlegroups.com. >> To unsubscribe from this group, send email to >> yelp-developer-support+unsubscribe@googlegroups.com. >> For more options, visit this group at >> http://groups.google.com/group/yelp-developer-support?hl=en.
Without using above mentioned oauth.js and sha1.js files you can't make yelp v2 search requests. Those JS files would be used to resolve the OAuth signing methods to sign your request. There is no escape from that. Those are the key files that you need to use anyways to do the OAuth signing of your request with Yelp.
On Thursday, April 26, 2012 2:06:49 PM UTC+5:30, Sharath wrote:
> Hi Prem,
> Thanks for the information. Implemented the Business API with the help of > oauth.js and sha1.js and Consumer Key, Consumer Secret, Token and Token > Secret values. > Do you have any sample code without using the above mentioned .js files? > Once again Thanks Prem.
> Thanks, > Sharath Chandra.
> On Wednesday, April 25, 2012 11:40:24 PM UTC+5:30, Garrick Chin wrote:
>> Hi Sharath,
>> There is a javascript example in our github examples repo, as linked by: >> http://www.yelp.com/developers/documentation/v2/overview >> Please refer to our documentation (linked above) for the APIv2 "Search >> API" section.
>> Prem, appreciate your help in pointing him in the right direction - >> thanks!
>> On Wed, Apr 25, 2012 at 5:27 AM, Prem <prem.techmail...@gmail.com> wrote:
>>> Hi Sharath,
>>> You can't make the business API search as you mentioned in your query. >>> There are two steps when you're using Yelp v2.0.
>>> Your business request URL would be looking something like this, >>> http://api.yelp.com/v2/business/<yelpBizId received as part of first >>> search request for a particular business(restaurant)>
>>> The above is not the full request URL again, along with this you need to >>> use OAuth methods to sign your request with all the keys available for you.
>>> Please find the attached 'index.html' for a sample implementation, but >>> this only contains the implementation for making the initial search request >>> API. You need to follow the same method to make the business API request >>> after you've got the search results.
>>> Hope this would help you kick started with Yelp API usage.
>>> Cheers, >>> Prem
>>> On Wednesday, April 25, 2012 2:59:44 PM UTC+5:30, Sharath wrote:
>>>> Hi,
>>>> I would like to implement business api in my mobile application. and >>>> for example i am searching for "Donuts" in Houston, Tx. And also i >>>> have Consumer Key, Consumer Secret, Token and Token Secret values. >>>> Now i need to create a URL to fetch the JSOn data and then i can bind >>>> the data to my page Look and feel.
>>> To post to this group, send email to >>> yelp-developer-support@googlegroups.com. >>> To unsubscribe from this group, send email to >>> yelp-developer-support+unsubscribe@googlegroups.com. >>> For more options, visit this group at >>> http://groups.google.com/group/yelp-developer-support?hl=en.
On Friday, April 27, 2012 5:23:24 PM UTC+5:30, Prem wrote:
> Hi Sharath,
> Without using above mentioned oauth.js and sha1.js files you can't make > yelp v2 search requests. Those JS files would be used to resolve the OAuth > signing methods to sign your request. There is no escape from that. Those > are the key files that you need to use anyways to do the OAuth signing of > your request with Yelp.
> Thanks, > Prem
> On Thursday, April 26, 2012 2:06:49 PM UTC+5:30, Sharath wrote:
>> Hi Prem,
>> Thanks for the information. Implemented the Business API with the help of >> oauth.js and sha1.js and Consumer Key, Consumer Secret, Token and Token >> Secret values. >> Do you have any sample code without using the above mentioned .js files? >> Once again Thanks Prem.
>> Thanks, >> Sharath Chandra.
>> On Wednesday, April 25, 2012 11:40:24 PM UTC+5:30, Garrick Chin wrote:
>>> Hi Sharath,
>>> There is a javascript example in our github examples repo, as linked by: >>> http://www.yelp.com/developers/documentation/v2/overview >>> Please refer to our documentation (linked above) for the APIv2 "Search >>> API" section.
>>> Prem, appreciate your help in pointing him in the right direction - >>> thanks!
>>> On Wed, Apr 25, 2012 at 5:27 AM, Prem <prem.techmail...@gmail.com>wrote:
>>>> Hi Sharath,
>>>> You can't make the business API search as you mentioned in your query. >>>> There are two steps when you're using Yelp v2.0.
>>>> The above is not the full request URL, along with this you need to use >>>> OAuth methods to sign your request with all the keys available for you.
>>>> When you make the proper request URL, Yelp would return you the results >>>> and each result would have the business ID(yelpBizId) returned.
>>>> Your business request URL would be looking something like this, >>>> http://api.yelp.com/v2/business/<yelpBizId received as part of first >>>> search request for a particular business(restaurant)>
>>>> The above is not the full request URL again, along with this you need >>>> to use OAuth methods to sign your request with all the keys available for >>>> you.
>>>> Please find the attached 'index.html' for a sample implementation, but >>>> this only contains the implementation for making the initial search request >>>> API. You need to follow the same method to make the business API request >>>> after you've got the search results.
>>>> Hope this would help you kick started with Yelp API usage.
>>>> Cheers, >>>> Prem
>>>> On Wednesday, April 25, 2012 2:59:44 PM UTC+5:30, Sharath wrote:
>>>>> Hi,
>>>>> I would like to implement business api in my mobile application. and >>>>> for example i am searching for "Donuts" in Houston, Tx. And also i >>>>> have Consumer Key, Consumer Secret, Token and Token Secret values. >>>>> Now i need to create a URL to fetch the JSOn data and then i can bind >>>>> the data to my page Look and feel.
>>>> To post to this group, send email to >>>> yelp-developer-support@googlegroups.com. >>>> To unsubscribe from this group, send email to >>>> yelp-developer-support+unsubscribe@googlegroups.com. >>>> For more options, visit this group at >>>> http://groups.google.com/group/yelp-developer-support?hl=en.
I'm a freshman for Yelp API, currently doing a NLP project by using Yelp API. I go with Yelp API for PHP. As mentioned, I copied the sample code((with generated key replaced in the code for sure) to my local machine, and uploaded to PHP web server. When I executed this PHP program, it generated a github page which appears very weird to me... Below is the generated PHP url page. http://03531d0.netsolhost.com/NLP.php I am not sure what is wrong, since I was expecting it should output the result list of "tacos" in "sf". Please guide me, thanks in advance.
On Wednesday, April 25, 2012 2:29:44 AM UTC-7, Sharath wrote:
> Hi,
> I would like to implement business api in my mobile application. and > for example i am searching for "Donuts" in Houston, Tx. And also i > have Consumer Key, Consumer Secret, Token and Token Secret values. > Now i need to create a URL to fetch the JSOn data and then i can bind > the data to my page Look and feel.
On Tue, Oct 23, 2012 at 1:42 AM, Rockinus <superbarm...@gmail.com> wrote:
> Hello everyone,
> I'm a freshman for Yelp API, currently doing a NLP project by using Yelp
> API. I go with Yelp API for PHP.
> As mentioned, I copied the sample code((with generated key replaced in the
> code for sure) to my local machine, and uploaded to PHP web server.
> When I executed this PHP program, it generated a github page which appears
> very weird to me... Below is the generated PHP url page.
> http://03531d0.netsolhost.com/**NLP.php<http://03531d0.netsolhost.com/NLP.php>
> I am not sure what is wrong, since I was expecting it should output the
> result list of "tacos" in "sf".
> Please guide me, thanks in advance.
> On Wednesday, April 25, 2012 2:29:44 AM UTC-7, Sharath wrote:
>> Hi,
>> I would like to implement business api in my mobile application. and
>> for example i am searching for "Donuts" in Houston, Tx. And also i
>> have Consumer Key, Consumer Secret, Token and Token Secret values.
>> Now i need to create a URL to fetch the JSOn data and then i can bind
>> the data to my page Look and feel.
> To post to this group, send email to
> yelp-developer-support@googlegroups.com.
> To unsubscribe from this group, send email to
> yelp-developer-support+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/yelp-developer-support?hl=en.