when i use GET to retrieve and show information only, and Create, Update, Delete using POST, will my web app be automatically RESTful?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, as the REST idea gives the following mappings:
2 of these html actions (PUT and DELETE) aren’t normally supported by browsers so REST frameworks tend to use some fudging to allow them through browsers.
There’s also a lot of design philosophy in creating a RESTful application, so it’s not really possible to have something ‘automatically’ restful. There’s a lot of discussion between some groups as to what REST actually entails as well.