We're using TUSKit to upload files to Bunny.net.
Each upload requires a signed authorization signature, so we start uploads using:
tusClient.uploadFileAt(filePath: url, customHeaders: headers)
When the upload is interrupted or paused (for example, when the app is closed or internet is lost), we want to resume the upload later.
However, by that time our authorization signature may have expired.
Is there a way to resume an existing upload with updated custom headers (e.g. a new Authorization token/signature)?
If not, would it be possible to expose a way to modify headers before retrying or resuming?
Thanks for the great library!