Hi all,
Use this code to convert any blob data to base64 data as you know you can’t directly upload Blob Data to Bubble directly-
var reader = new FileReader();
reader.readAsDataURL(your_blob_data);
reader.onloadend = function () {
var base64data = reader.result;
};
Checkout Bubble plugin course - Learn Bubble.io Plugin Development (Use code “20_PER_OFF” to get 20% discount)