I'm currently working on a feature for a web app using Dropbox and i'm a bit new to it. The feature involves some image editing using an HTML 5 Canvas and saving the canvas image to Dropbox.
what i'm trying to do is to get the canvas image converted to base64 image data and write directly to Dropbox using JavaScript on the client side only.
and since Dropbox API v1 is now deprecated, i'm trying to implement this in v2.
i've done some digging but most of the examples i can find were using the writeFile method in version 1 API, like this one: Save image to dropbox with data from canvas
So i just wonder how i may get this to work with the v2 API?
thanks in advanced.