moxiecode / moxie

Pollyfills for XHR2 and File API
GNU Affero General Public License v3.0
483 stars 134 forks source link

Headers not sending on IE9 with flash #175

Open irbian opened 7 years ago

irbian commented 7 years ago

I made a test. There are no custom headers on the request on IE9 emulated via IE11

http://play.plupload.com/v__J_/4

jayarjo commented 7 years ago

Try this: http://play.plupload.com/v__J_/6. To send HTTP headers flash has to be switched to a special mode, notice send_custom_headers capability, that does that.

We used to have all capabilities outlined here, but it seems that GitHub has dropped support for HTML tables in Wiki Markdown, so it looks a bit unreadable now.

jayarjo commented 7 years ago

Still readable on our site though: http://www.plupload.com/docs/v2/Required-Features

irbian commented 7 years ago

Cool! I will try that :dagger: The docs on plupload looks wonderful, when I started with the library they would have been helpful :D I had to investigate more (I arrived via this repo, not via plupload, so that docs are new to me)

irbian commented 7 years ago

Doesn´t work with GET http://play.plupload.com/v__J_/7

jayarjo commented 7 years ago

Seems like Flash limitation.

Due to browser limitations, custom HTTP request headers are only supported for POST requests, not for GET requests.

Wasn't aware of it. I guess I will have to update the table of capabilities.