Use data originated from OParl API

This commit is contained in:
Joerg Reichert 2020-09-20 22:44:44 +02:00
parent f8a3c3eb83
commit 857ff4f164
3 changed files with 14 additions and 7 deletions

View file

@ -5,9 +5,13 @@ class ImportController < ApplicationController
def new_papers_callback
require 'open-uri'
api_key = Rails.application.config_for(:morph)['key']
uri = URI.parse("https://api.morph.io/jrlover/city_council_leipzig_recent_papers/data.json?key=#{api_key}&query=select%20*%20from%20%27data%27")
Paper.import_from_json(uri.read)
#api_key = Rails.application.config_for(:morph)['key']
#uri = URI.parse("https://api.morph.io/jrlover/city_council_leipzig_recent_papers/data.json?key=#{api_key}&query=select%20*%20from%20%27data%27")
print("before parse")
uri = URI.parse("https://joergreichert.de/srm/input.json")
print("after parse")
#Paper.import_from_json(uri.read)
print("after import")
render nothing: true
end
end