Приложение My Rails читает в JSON из Bing API и создает запись для каждого результата. Однако, когда я пытаюсь сохранить один из вложенных атрибутов JSON, я получаю Resource creation error: no implicit conversion of String into Integer
.
JSON выглядит так:
{
"Demo": {
"_type": "News",
"readLink": "https://api.cognitive.microsoft.com/api/v7/news/search?q=european+football",
"totalEstimatedMatches": 2750000,
"value": [
{
"provider": [
{
"_type": "Organization",
"name": "Tuko on MSN.com"
}
],
"name": "Hope for football fans as top European club resume training despite coronavirus threat",
"url": "https://www.msn.com/en-xl/news/other/hope-for-football-fans-as-top-european-club-resume-training-despite-coronavirus-threat/ar-BB12eC6Q",
"description": "Bayern have returned to training days after leaving camp following the outbreak of coronavirus. The Bundesliga is among top European competitions suspended."
}
}
Атрибут I У меня возникли проблемы с [: provider] [: name].
Вот мой код:
def handle_bing
@terms = get_terms
@terms.each do |t|
news = get_news(t)
news['value'].each do |n|
create_resource(n)
end
end
end
def get_terms
term = ["European football"]
end
def get_news(term)
accessKey = "foobar"
uri = "https://api.cognitive.microsoft.com"
path = "/bing/v7.0/news/search"
uri = URI(uri + path + "?q=" + URI.escape(term))
request = Net::HTTP::Get.new(uri)
request['Ocp-Apim-Subscription-Key'] = accessKey
response = Net::HTTP.start(uri.host, uri.port, :use_ssl => uri.scheme == 'https') do |http|
http.request(request)
end
response.each_header do |key, value|
# header names are coerced to lowercase
if key.start_with?("bingapis-") or key.start_with?("x-msedge-") then
puts key + ": " + value
end
end
return JSON(response.body)
end
def create_resource(news)
Resource.create(
name: news['name'],
url: news['url'],
description: news['description'],
publisher: news['provider']['name']
)
end
Я посмотрел на эти вопросы, но они мне не помогли:
Извлечение поля c из JSON вложенных хэшей
Нет неявного преобразования строки в целое число (TypeError)?
Почему я получаю "неявное преобразование строки в целое число (TypeError)"?
ОБНОВЛЕНИЕ: Я также пытался обновить код до:
publisher: news['provider'][0]['name']
, но я получил ту же ошибку.