Sha256: 88fa3fd0c6d6575cf4891e0eec3a90752d9bf36139097e858ebe55f5c6be0447

Contents?: true

Size: 955 Bytes

Versions: 1

Compression:

Stored size: 955 Bytes

Contents

# frozen_string_literal: true

require 'json'
require 'net/https'

module Tanita
  module Api
    module Client
      BASE_URL = 'https://www.healthplanet.jp'
      DEFAULT_REDIRECT_URI = "#{BASE_URL}/success.html"

      module HttpHelper
        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

1 entries across 1 versions & 1 rubygems

Version Path
tanita-api-client-0.2.1 lib/tanita/api/client/helpers.rb