# File lib/jira/http_client.rb, line 20
    def make_cookie_auth_request
      body = { :username => @options[:username], :password => @options[:password] }.to_json
      make_request(:post, '/rest/auth/1/session', body, {'Content-Type' => 'application/json'})
    end