Almost every application stores data somewhere. It is very often stored in database. If you want to store data, you need to find a way to access database. Today I’ll describe possible methods to access database with advantages and problems. Possible options You should know that there is a lot of ways to access database…
Read MoreStatus Codes
Help your client even more Sometime when one of your favorite website has issue you can see something like that: It’s very small thing, but it can help your client, if you respond with information that action succeeded or failed, and HTTP has easy, lean solution for that, Status Codes. Why even bother with status…
Read MoreREST API – Uniform Interface
Previously We were talking about REST API and the most important trait of REST, Statelessness. You can read it here, if you didn’t have opportunity for it. Today’s topic is uniform interface, it’s mostly about look and feel of our endpoints. Some people may say that it’s not important, these people didn’t work with poorly…
Read MoreHTTP Verbs
HTTP defines a set of request methods, I like to call them verbs, and both terms are valid. Each of HTTP Verb has its task and is different from others. Information transport HTTP Verbs are used to transport information, each of them may have three options to transport data. REST adds restriction, I’ll cover it…
Read More