Added "shorten" command

This commit is contained in:
takumi091111
2017-10-12 02:37:33 +09:00
parent 449661b503
commit 6fc7e222b1
2 changed files with 28 additions and 0 deletions

View File

@ -27,4 +27,14 @@ def get_json(location, limit = 10)
puts [uri.to_s, e.class, e].join(" : ")
# handle error
end
end
def post_json(location, json)
uri = URI.parse(location)
https = Net::HTTP.new(uri.host, uri.port)
https.use_ssl = true
req = Net::HTTP::Post.new(uri.request_uri)
req["Content-Type"] = "application/json"
req.body = json
return https.request(req)
end