Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

377
Vistas
How do you upload a file to a pre-signed POST URL from a browser to Minio or S3 using javascript

This article shows how to upload a file to Amazon S3 or minio using a form. I want to use the pre-signed POST URL policy method, since it appears to be the most secure.

However, I wish to upload a file programmatically to minio or S3 using a browser. In other words, I want to use javascript, not a form.

I'm a node user and familiar with superagent, which is very simple to use using the .field() and .attach() operation to set the form fields and to upload the file.

This works in node:

  let cdnAgent = superagent;
  let req = cdnAgent.post(r.data.pictureSet.uploadLink);
  _.each(uploadForm, function(value, key) {
    req.field(key, value);
  });
  // upload file via the created signed policy
  return req
  .set('Content-Type', 'application/octet-stream')
  .attach('file', 'test/data/test.jpg');
}).then(r => {

However, this does not work in a browser, .attach() is not supported, and when I worked around that, I ran into CORS issues since my javascript domain is a separate domain from my minio or S3 domain.

To answer this question I'd like to see a complete example using XMLHttpRequest, Axios, superagent, or Fetch, that works across domains.

I note there are some similar questions to this and some answers, but they all appear to be very outdated and technology has moved on. So I don't think this is a duplicate question.

about 4 years ago · Santiago Trujillo
1 Respuestas
Responde la pregunta

0

https://github.com/harshavardhana/minio-js-browser-upload/ you can simply clone this repo and then run

node presign-post-server.js

Visit browser at http://localhost:8080. Click on the upload file and just upload the selected file will be uploaded through presigned post policy style. [1]

Currently the example just points to https://play.minio.io:9000 and to uploads bucket. [2]

[1] https://github.com/harshavardhana/minio-js-browser-upload/blob/master/index-post.html

[2] https://github.com/harshavardhana/minio-js-browser-upload/blob/master/presign-post-server.js

about 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda