I do not get RESTful thing. Yes, I know how to send a GET request to my application from my browser. This is through the URL link.
<a href="/user/someone">
And it can also send POST requests via the form method.
<form method="post">
In addition, I know that browsers sometimes send a HEAD command to determine the state of a page, but on which the end user has no control.
Then which DELETE and PUT commands do I read? How do you send, for example, a DELETE command from your browser to your RESTful application?
CDR
source share