I'm trying to make requests to the Yahoo Placefinder API using a script I wrote, and I'd like it to return JSON. However, all the requests send back XML. That being said, when I run the same script in my browser, I get JSON data as expected. Here are my requests:
wget http://where.yahooapis.com/geocode?location=San+Francisco,+CA&flags=J&appid=yourappid
curl http://where.yahooapis.com/geocode?location=San+Francisco,+CA&flags=J&appid=yourappid
Any help is much appreciated. This is pretty frustrating, and seems like it should be easy to fix!
curl -X GET "http://where.yahooapis.com/geocode?location=San+Francisco,+CA&flags=J", are you missing the parameters? – ajreal Dec 22 '11 at 2:14