HTTP Flashcards
What are the most common HHTP Methods we will use ?
GET
POST
What does the GET Request do ?
This is used for getting information from a web server.
What does a POST Request do ?
This is used for submitting data to the web server and potentially creating new records
What does a PUT Request do ?
This is used for submitting data to a web server to update information
What does a DELETE Request do ?
This is used for deleting information/records from a web server.
What HHTP method would be used to update your email address?
PUT
What HHTP method would be used to create a new user account?
POST
What HTTP method would be used to remove a picture you’ve uploaded to your account?
DELETE
What HTTP method would be used to view a news article?
GET
What does URL stand for ?
Uniform Resource Locator
What are the different sections of a URL ?
Scheme User Host Port Path Query String Fragment
Which feature of a URL instructs on what protocol to use for accessing the resource such as HTTP, HTTPS, FTP (File Transfer Protocol).
Scheme
Some services require authentication to log in, what feature of a URL can you put a username and password into the URL to log in.
User
The domain name or IP address of the server you wish to access.
Host
What URL feature has the file name or location of the resource you are trying to access.
Path