fork download
  1. require 'curb'
  2.  
  3. http = Curl::Easy.new("URLIURL")
  4. http.ssl_verify_peer= false
  5. http.http_auth_types = [ :gssnegotiate ]
  6. http.username = ":"
  7. http.verbose = false
  8. http.setopt(Curl::CURLOPT_GSSAPI_DELEGATION, Curl::CURLGSSAPI_DELEGATION_POLICY_FLAG)
  9. http.perform
  10.  
  11. print http.body_str
  12.  
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty