InterviewSolution
Saved Bookmarks
| 1. |
What Are The Safe And Unsafe Methods Of Http? |
|
Answer» safe methods are those that NEVER modify resources. The only safe methods, from the FOUR listed above, is GET. The others are UNSAFE, because they may result in a modification of the resources. safe methods are those that never modify resources. The only safe methods, from the four listed above, is GET. The others are unsafe, because they may result in a modification of the resources. |
|