Yahav Azulay
Yahav Azulay

Reputation: 17

upload blob to azure blob storage via react app

hello im new with azure storage and spfx . I have built a image generate app using canvas and I want to upload the blob output to storage. Every article I've seen talks about uploading files to azure storage and not blob. Maybe someone can direct me to a relevant article, react library documentation or tutorial. i have azure storage account and spfx web part . Thanks in advance..

Upvotes: 0

Views: 7044

Answers (1)

George Chen
George Chen

Reputation: 14334

If you really need a sample about upload file to azure blob with react, you could refer to this blog:Upload to Azure Blob Storage with React.

It just uses the @azure/storage-blob to manage the blobs, so actually you also could refer to this official tutorial:Quickstart: Manage blobs with JavaScript v12 SDK.

Here is the sample is the azure GitHub repository:Getting started with samples.

Upvotes: 1

Related Questions