You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm using uppy in the client side to upload files. Everyting works great with tus.FileStore but when i use S3Store it throws this error:
Something went wrong with that request Unknown encoding: base64url
I tried standalone server and express, same result.
const tus = require('tus-node-server');
const server = new tus.Server();
server.datastore = new tus.S3Store({
path: '/files',
bucket: 'bucket-name',
accessKeyId: 'access-key-id',
secretAccessKey: 'secret-access-key',
region: 'eu-west-1',
partSize: 8 * 1024 * 1024, // each uploaded part will have ~8MB,
tmpDirPrefix: 'tus-s3-store',
});
const host = '127.0.0.1';
const port = 1080;
server.listen({ host, port }, () => {
console.log(`[${new Date().toLocaleTimeString()}] tus server listening at http://${host}:${port}`);
});
The text was updated successfully, but these errors were encountered:
I'm using uppy in the client side to upload files. Everyting works great with tus.FileStore but when i use S3Store it throws this error:
Something went wrong with that request Unknown encoding: base64url
I tried standalone server and express, same result.
The text was updated successfully, but these errors were encountered: