posting from an app (iOS android etc..) not a web form.
class someImage(models.Model):
image = models.ImageField(upload_to= settings.SHARE_IMAGE_UPLOAD_PATH)
@csrf_exempt
def saveImage(request):
How to write the view? it receives an image in a post request. Every thing i find is form related (server newbie)
Just because you're not using an actual HTML form to submit the data doesn't mean you can't use a
ModelForm
to process the request: