# File lib/rubytter.rb, line 175
  def post(path, params = {})
    path += '.json'
    param_str = to_param_str(params)
    req = create_request(Net::HTTP::Post.new(path_prefix + path))
    structize(http_request(@host, req, param_str))
  end