HTTP, REST API Flashcards
Which HTTP METHODS (verbs) can be used to “send data”?
POST, PUT, PATCH
Which HTTP METHOD removes a singleton resource?
DELETE
Who was the originator of the REST architecture?
Roy Fielding
Which HTTP METHOD is the most commonly used by REST API?
GET
Which group of HTTP status codes is used for Redirection messages?
3XX
Which group of HTTP status codes contains the Not Found message?
4XX
According to Roy Fielding, “The key abstractions of information in REST is a representation.”
False. Should be “a resource”, not representation.
Which of the 6 REST constraints ensures no client context/information is stored on the server between requests?
Statelessness
REST Clients, like Postman and Insomnia make responses from REST APIs more readable.
True
What does REST API stand for?
Representational State Transfer and Application Programming Interface
Which of the following strings must be added to the INSTALLED_APPS variable to add Django REST framework in the Django application?
‘rest_framework’
The “book_collection” view supports which HTTP requests?
GET, POST
The “book_instance” view supports which HTTP requests?
GET, PUT, DELETE
What new URL paths were added to the books/urls.py file to map requests to the new REST API views?
path(‘api/’, book_collection),
path(‘api//’, book_instance),
Data serialization is the process of converting complex data structures into a byte stream for storage, transfer and distribution.
True
What book attribute is NOT updated when the data is validated in the BookSerializer code?
id
What argument is passed in to BookSerializer update function containing “cleaned” input data?
validated_data
What error was returned when you issued the following HTTPie (http) command in our lab?
http GET “:8000/books/api/14/
HTTP/1.1 404 Not Found
What book title was added using the HTTPie (http) command line client?
The Count of Monte Cristo
What field did we update to correct an error in data entered using the HTTPie command line client?
year
API endpoint:
a URL that returns an HTTP response in JSON format
In Lab 9, what info did you retrieve using GET requests?
- Currency exchange rates/data
- TV show information for Ted Lasso, data from a specific episode
- Penguin Random House API - the davinci code
HTTP status 5XX:
internal server error
Django REST API Framework - Serializers:
Serialization is the process of converting complex data (e.g. python object) into native Python datatypes that can easily be rendered in JSON, XML, or other content types.
Django REST API provides a variety of Serializers, including a ModelSerializer that provide shortcuts for serializing your data.
Django Serializers:
- ModelSerializer
- Serializer
- HyperlinkedModelSerializer
- ListSerializer
- BaseSerializer
Renderers:
allow you to return HTTP response objects using various media types, depending on the Accept header in the request
Parsers:
Parsers are used to parse the content of incoming HTTP request objects based on the Content-Type header received in the HTTP request