Upload image using GET not POST

Hi Wapplers,

I am trying to upload a file by using _GET rather than _POST. Is this possible? It keeps giving me null response:

{“uploadImages”:null,“insert”:{“affected”:1,“identity”:34}}

Thanks

This is a bad idea, GET has stricter size requirements as the image would have to be somehow inserted in the URL itself (usually Base64-encoded)

1 Like

That’s what I thought. Thank you