After testing that the APIs work properly with Postman, we will test the APIs that are called with the front-end built from part 2.
Open config.js in fcj-serverless-frontend folder that downloaded from part 2.
Open App.js in fcj-serverless-frontend/src/, change value of isAdmin with true.
Run the code below in your terminal.
yarn build
aws s3 rm s3://fcj-book-shop-by-myself --recursive
aws s3 cp build s3://fcj-book-shop-by-myself --recursive
Paste the endpoint of S3 static web into your browser. The app already shows the book information, but still no pictures because we haven’t uploaded the pictures yet.
So the listing API is working properly.
Test writing API.
5
Amazon Web Services in Action
Andreas Wittig
IT
59.99
Amazon Web Services in Action, Second Edition is a comprehensive introduction to computing, storing, and networking in the AWS cloud. You'll find clear, relevant coverage of all the essential AWS services you to know, emphasizing best practices for security, high availability, and scalability.
Test the deleting API.
We have finished building a simple SAM-based web application following the serverless model.