Re: uploading images via API

2012-06-04 Thread Aljoša Mohorović
take a look at gist w/ base64 file upload solution: https://github.com/toastdriven/django-tastypie/issues/42 it works great, you can add Base64FileField implementation to your app (it's only ~15 lines of code) and you can upload from anything that can open a file and encode it. you can also use

uploading images via API

2012-05-29 Thread Bastian
Hi, I have a view where a user can upload an image via the web interface. Now I would like to play with uploading the images via an API from phones and such. I use Tastypie for other endpoints but it looks like it does not really support images yet. So I'm looking for advices as to the road to