我試圖從Flickr的API將圖像加載到Ruby on Rails應用程序中,但我在JSON.parse()行上收到「意外的標記」。爲什麼我的JSON.parse失敗? Ruby on Rails
我在這裏發現了另一個響應,其中返回的JSON有雙引號,並且解決方案是將.gsub添加到最後,但仍然出現錯誤。
任何人都知道問題是什麼?
def add
@jsonresults = open("http://api.flickr.com/services/rest/?method=flickr.interestingness.getList&api_key=bb398c11934abb6d51bdd720020f6a4a&per_page=1&page=1&format=json&nojsoncallback=1").read
@images = JSON.parse(@jsonresults.to_json.gsub('\"', '"'))
end
錯誤:
JSON::ParserError in ImagesController#add
757: unexpected token at '"{"photos":{"page":1, "pages":500, "perpage":1, "total":500, "photo":[{"id":"8234011021", "owner":"[email protected]", "secret":"b4c05df8c5", "server":"8341", "farm":9, "title":"Crescent Lake", "ispublic":1, "isfriend":0, "isfamily":0}]}, "stat":"ok"}"'
http://jsonlint.com/ – ryanve