3

I am developing an application. In that I want to use the Yelp Api. So after registering on Yelp site how to integrate that Api in our application. Please provide me any examples or any stuff.

Ozair Kafray
  • 13,351
  • 8
  • 59
  • 84
venkat
  • 345
  • 8
  • 21

1 Answers1

8

With the above links, depending on your current skills, you might have to search and read about:

  1. Sending/handling a http request/response on iPhone.

  2. Parsing JSON response on iphone/Objective-C

Community
  • 1
  • 1
Ozair Kafray
  • 13,351
  • 8
  • 59
  • 84
  • Only that one line of code is sufficient for gertting the data from Yelp? – venkat Jul 07 '11 at 06:30
  • That one line is just the http request you need to send. You then need to handle the response from Yelp which is in JSON format by default. – Ozair Kafray Jul 07 '11 at 06:41
  • You should be looking for `1.` sending/handling a http request/response on iPhone. `2.` parsing JSON response on iphone/Objective-C – Ozair Kafray Jul 07 '11 at 07:09
  • @Ozair can you please suggest me that where i can set my Yelp key in URL . Same like google Api (we can append APIKey with request .) . – Alok Aug 25 '15 at 10:33
  • my concern is that can we get response of Yelp API with direct URL only (Without integration of framework ). Please suggest me for this . – Alok Aug 25 '15 at 10:34
  • 1
    @iThink The authentication parameters can be passed in the HTTP (Authorization) header as URL query keys or in the POST data. Read more [here](https://www.yelp.com/developers/documentation/v2/authentication). – Ozair Kafray Aug 26 '15 at 06:45