Credentials and Additional Data
During file upload or removal, you can control whether or not to send cookies and headers for cross-site requests, or additional data.
Attaching Credentials to Requests
You can control whether or not the request will use credentials by setting the withCredentials
option. By default, withCredentials
is set to true
.
Attaching Additional Data to Requests
You can also send additional data in the form of key/value pairs and modify the request headers.
Depending on when the data will be sent:
- In the
onBeforeUpload
event handler, update theadditionalData
orheaders
property of the event - In the
onBeforeRemove
event handler, update theadditionalData
orheaders
property of the event