Uploading files in RESTful way?

yanchenko :

I'm designing a RESTful API that should handle binary file uploads.
Should this be done the same way as html form upload or is there a better way?

Aggelos Biboudis :

Take a look at the Amazon api for an idea. It uses a PUT query and then through sendREST it sends the content. Uploading files to Amazon S3 with REST API

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related