Sha256: c54cbb19d7c8ceaff94fb4250b1c4058870d4541e5ac5335187ccc225c64aee9
Contents?: true
Size: 959 Bytes
Versions: 3
Compression:
Stored size: 959 Bytes
Contents
# frozen_string_literal: true require 'json' require 'net/https' module Tanita module Api module Client module HttpHelper BASE_URL = 'https://www.healthplanet.jp' DEFAULT_REDIRECT_URI = "#{BASE_URL}/success.html" def generate_uri(path, params) uri = URI.parse("#{BASE_URL}#{path}?#{URI.encode_www_form(params)}") uri.to_s end def request(path, params) uri = URI.parse("#{BASE_URL}#{path}") http = Net::HTTP.new(uri.host, uri.port) http.use_ssl = true http.verify_mode = OpenSSL::SSL::VERIFY_NONE req = Net::HTTP::Post.new(uri.path) req.set_form_data(params) http.request(req) end def parse_json(str) JSON.parse(str, :symbolize_names => true) rescue JSON::ParserError => e raise Error.new("JSON::ParseError: '#{e}'\nstr:#{str}") end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
tanita-api-client-0.2.0 | lib/tanita/api/client/helpers.rb |
tanita-api-client-0.1.1 | lib/tanita/api/client/helpers.rb |
tanita-api-client-0.1.0 | lib/tanita/api/client/helpers.rb |