Set up Amplify REST API
The Amplify API category provides an interface for making requests to your backend. The Amplify CLI deploys REST APIs and handlers using Amazon API Gateway and AWS Lambda.
Goal
To setup and configure your application with Amplify API to make requests to your API Gateway and trigger the lambda function using authorization provided by Amplify Auth.
Prerequisites
Make sure you have completed the below steps:
Configure API
To start provisioning API resources in the backend, go to your project directory and execute the command:
1amplify add api
Enter the following when prompted:
1? Please select from one of the below mentioned services:2 `REST`3? Provide a friendly name for your resource to be used as a label for this category in the project:4 `todo-api`5? Provide a path (e.g., /book/{isbn}):6 `/todo`7? Choose a Lambda source8 `Create a new Lambda function`9? Provide a friendly name for your resource to be used as a label for this category in the project:10 `todo`11? Provide the AWS Lambda function name:12 `todo`13? Choose the function runtime that you want to use:14 `NodeJS`15? Choose the function template that you want to use:16 `Serverless ExpressJS function (Integration with API Gateway)`17? Do you want to access other resources created in this project from your Lambda function?18 `No`19? Do you want to invoke this function on a recurring schedule?20 `No`21? Do you want to edit the local lambda function now?22 `No`23? Restrict API access24 `No`25? Do you want to add another path?26 `No`
To push your changes to the cloud, execute the command:
1amplify push
Upon completion, amplifyconfiguration.json
should be updated to reference provisioned backend storage resources. Note that this file should already be a part of your project if you followed the Project setup walkthrough.
Install Amplify Libraries
Use the package manager of your choice to install the amplify JS library. For example, with npm
:
1npm install aws-amplify @aws-amplify/react-native
If you are using yarn
:
1yarn add aws-amplify @aws-amplify/react-native
Initialize Amplify API
To initialize the Amplify API category you need to configure Amplify with Amplify.configure()
.
Import and load the configuration file in your app. It's recommended you add the Amplify configuration step to your app's root entry point. For example index.js
in React or main.ts
in Angular.
1import { Amplify } from 'aws-amplify';2import amplifyconfig from './amplifyconfiguration.json';3
4Amplify.configure(amplifyconfig);
Make a POST Request
Send a POST request with a JSON body.
1import { post } from 'aws-amplify/api';2
3async function postTodo() {4 try {5 const restOperation = post({6 apiName: 'todo-api',7 path: '/todo',8 options: {9 body: {10 message: 'Mow the lawn'11 }12 }13 });14 await restOperation.response;15 console.log('POST call succeeded');16 console.log(response);17 } catch (e) {18 console.log('POST call failed: ', e);19 }20}
To navigate to your backend, go to the API Gateway console and select the API. The name of the API corresponds to the friendly name of the resource to be used as a label you specified earlier in the CLI steps.
Next steps
Congratulations! You've made a call to your API Gateway and triggered your Lambda function. Check out the following links to see other Amplify API use cases: