Topic: Passing additional data in JSON

Hi Guys,

How can I pass additional data in JSON format?
I have tried to add JSON data into headers (as mentioned here: http://www.plupload.com/documentation.php)

Re: Passing additional data in JSON

Use the query string or use multipart and the multipart_params feature. Notice this will not work on WebKit under HTML5 so you should also add required_features.

So something like:
multipart: true,
multipart_params: {data:'JSON string ...'},
required_features: 'multipart'

Re: Passing additional data in JSON

Is this limitation with WebKit browsers going to be solved sometime in the future? Why doesn't WebKit support it? Is this a problem with WebKit or with plupload?

Last edited by bjesus (2010-07-27 12:07:23)

Re: Passing additional data in JSON

It's a limitation in WebKit. Chrome 6 seems to have a multipart feature built in though.