What is the difference between POST and PUT in HTTP?
Overall: Both PUT and POST can be used for creating. You have to ask, “what are you performing the action upon?”, to distinguish what you should be using. Let’s assume you’re designing an API for asking questions. If you want to use POST, then you would do that to a list of questions. If you … Read more