-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upload image on IE with PUT request is sent as POST call to server #261
Comments
The flash doesn't support put requests. PUT is only for HTML5 browsers. |
The demo won't allow put for IE8-9 now |
danialfarid#261 warrants a mention in the README.
Can you elaborate on this? |
For IE8-9 flash is used to upload the file to the server and flash upload file api does not support PUT request. https://github.com/mailru/FileAPI/issues/141 |
$upload.upload({
url: url,
method: 'PUT',
file: imageData
});
Logs of demo in IE9 using Charles logger shows that POST call is made even when method type 'PUT' is selected.
The flash file attached is making a POST call to the server always irrespective of method type specified in upload function.
Do we have a solution for this?
The text was updated successfully, but these errors were encountered: