# File lib/jira/oauth_client.rb, line 74
    def make_request(http_method, path, body='', headers={})
      case http_method
      when :delete, :get, :head
        response = access_token.send http_method, path, headers
      when :post, :put
        response = access_token.send http_method, path, body, headers
      end
      response
    end