Hi,
I have a custom companion, say the URL is https://my.companion.url
. When I pass tht into Uppy, as per the docs, I’m getting a 404 error on attempting an upload.
Code:
const uppy = new Uppy({ logger: debugLogger, options })
.use(AwsS3Multipart, {
companionUrl: "https://my.companion.url",
})
Result:
POST http://localhost:5173/%22https://my.companion.url%22;/s3/multipart 404 (Not Found)
fetchWithNetworkError @ fetchWithNetworkError.js:7
_request2 @ RequestClient.js:251
await in _request2 (async)
post @ RequestClient.js:206
createMultipartUpload @ index.js:559
(anonymous) @ RateLimitedQueue.js:161
_call2 @ RateLimitedQueue.js:258
run @ RateLimitedQueue.js:140
(anonymous) @ RateLimitedQueue.js:156
(anonymous) @ RateLimitedQueue.js:155
getUploadId @ index.js:162
uploadFile @ index.js:203
_createUpload2 @ MultipartUploader.js:230
start @ MultipartUploader.js:168
(anonymous) @ index.js:823
uploadFile @ index.js:725
(anonymous) @ index.js:967
upload @ index.js:960
_runUpload2 @ Uppy.js:1704
await in _runUpload2 (async)
(anonymous) @ Uppy.js:1285
Promise.then (async)
upload @ Uppy.js:1268
StatusBar2.startUpload @ StatusBar.js:93
g @ props.js:154
Am I doing something wrong? Or is this a bug?
EDIT: I just tried with the AwsS3 destination and got the same error.