CambridgeEducation / qualtrics_api

Qualtrics REST API Ruby Wrapper (Api version 3)
MIT License
6 stars 8 forks source link

A method for opening file passing the connection headers #24

Closed nglx closed 8 years ago

nglx commented 8 years ago

That should allow to download the file directly using:

export = export_service.start
if export.completed?
  Zip::File.open(export.open) do |zip|
    # do sth with a zip
  end
end

but let me test it a little bit

nglx commented 8 years ago

Tested!