Sha256: 66654c0afceea5920ebec84789a21f301d4b1c4db913394eb9d7728c0c07a26e
Contents?: true
Size: 1.1 KB
Versions: 2
Compression:
Stored size: 1.1 KB
Contents
# frozen_string_literal: true require 'json' require 'net/https' module Tanita module Api module Client BASE_URL = 'https://www.healthplanet.jp' AUTH_URL_PATH = '/oauth/auth' AUTH_URL = "#{BASE_URL}#{AUTH_URL_PATH}" TOKEN_URL_PATH = '/oauth/token' TOKEN_URL = "#{BASE_URL}#{TOKEN_URL_PATH}" 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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
tanita-api-client-0.2.3 | lib/tanita/api/client/helpers.rb |
tanita-api-client-0.2.2 | lib/tanita/api/client/helpers.rb |