I want to access the Yelp API 1.0, I have got for example this URL
which will give me some Burger Locations in LA in a JSON String.
How can I access this URL in order turn the response into a JS Object?
I know how to create JS Objects, the problem is getting the response from the server.
Here's my code right now: Maybe we can try to start from there:
var url = "http://api.yelp.com/business_review_search?term=burger&location=Los%20Angeles%2A%20CA&ywsid=secretKey" ;
$.getJSON(url, function(json) {
alert("JSON Data: " + json.message.text);
});