I made API server with Django rest framework.
It is quite simple board, But I have some question about delete article.
When delete article, METHOD will be DELETE
.
In previous code, I receive parameter(ex. password) to HTTP Body, and it works perfectly.
But after I inspect about this, DELETE Method with HTTP body is not a standard.
So, delete method with http body is bad havior?
Is there any solution about this?