Gets or sets a filter for the broken upload auto resume feature.
public function getAutoRecoveryFilter() { } public function setAutoRecoveryFilter($value) { }
Type: string
A JSON object containing two arrays - errorCodes
(Aurigma error codes) and httpCodes
. Values listed there will trigger the auto resume feature. Example of the JSON: {errorCodes: [0, 4], httpCodes: [404]}.
.
Default value is "{ 'errorCodes' : [4,0] }".
By default, it restores the upload only if the connection is lost or if server returns 5xx HTTP errors (like "bad gateway", etc). You can use this property if you want to extend this list, e.g. if your server always returns 404 error for any kind of errors.