Hi i am working with ruby on rails. I am using dropbox api in my web application and it is working fine for all(uploading, listing files and folders with metadata, creating new folder etc.). I want to download the file from dropbox to computer. For that I used following by clicking on file(using hyperlink )
response = client.get_file_and_metadata(params[:path])
It returns the metadata something like
rootapp_folderrev10a1c654dbytes229320is_dirfalsethumb_existsfalsepath/IRCTC Ltd,Booked Ticket Printing.pdfmodifiedTue, 11 Sep 2012 07:07:22 +0000iconpage_white_acrobatclient_mtimeTue, 11 Sep 2012 07:07:22 +0000size223.9 KBmime_typeapplication/pdfrevision1
I dont know how to download file from dropbox to computer in this case.
Please help me.
Thanks