Better file uploading approach: HTTP post multipart or HTTP put? -
Use-case : Upload a simple image file to a server, which the client later receives
-
Specify a
FTP serverfor the job. -
Put HTTP: It can directly upload files to the server without requiring server side / component to handle the biostream. -
http post: handlestream server side component by biostream.
I think the use of safely due to possible security problems More effort is required to use Post (POST) on a public website (and generally lessen). OTOH, I think there are so many resources to safely upload files with files and they are checking them in server side scripts, and this is more common.
Comments
Post a Comment