Lesson 9 Client-Server Architecture [API] Flashcards
What is BrowserStack?
It is a cloud web and mobile testing platform used to test websites and mobile apps on browsers and devices. This is web based so the user doesn’t have to install anything.
What is a client-server architecture (API)?
It is a set of defined methods of communication among various components.
When developers create apps, they usually always use client-server.
- The client side will always be sending requests to the server
- The server will always be responding to the client side
What is request method “Post”?
- When someone is storing information to the server
- Like making a payment or registering for an account
What is a request method “Get”?
- When you are requesting from the server
- Ex. Opening up youtube playlist
What are backend API status codes?
They are three-digit codes used to describe the result of the REST request.
What does it mean if the status code starts with 200?
It means the request was successful.
What does it mean if the status code starts with 400 or 500?
It means that the request was not successful.