Home > Blockchain >  Problem uploading a file using the Evo File API
Problem uploading a file using the Evo File API

Time:11-19

I've been trying to use the Seequent Evo File API to create an upload link and then upload a file, but I keep getting the error: Bad Request

Does anyone know what I might be doing wrong?

CodePudding user response:

When uploading via the File API you need to include the header and value:

x-ms-blob-type: BlockBlob

This is a requirement when uploading to Azure blob storage.

  • Related