Design the API
Learn how to design an API for web applications.
Dilemmas while designing API
On the sign-in screen, the user will submit a name and a language choice. Where does the list of language options come from? We could have the front-end application contact the server to find out the valid language options to show. This requires an additional API request, but we’ll be able to update the list ...