Read Files
Let’s implement the necessary endpoint to retrieve the uploaded files from the server.
We'll cover the following...
In this lesson, we’ll implement the essential endpoints that allow web applications to perform the basic operations that a user expects. Just to review, these basic operations are called CRUD (create, read, update, and delete) operations.
We have already implemented the create operation, which is the upload functionality. So now, we’ll implement the necessary read endpoints.
-
We’ll get all the files uploaded by a user. ...