Skip to content

Create simple AWS IoT MQTT pub/sub test page using AWS Amplify + React

License

Notifications You must be signed in to change notification settings

zhjb7/aws-amplify-react-iot-pub-sub-demo

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

aws-amplify-react-template

Overview

This is a very basic AWS Amplify + AWS IoT Javascript SDK + React project that combines basic authentication via Amazon Cognito with AWS IoT Core pubsub via the aws-iot-device-sdk to (1) authenticate via Cognito, (2) subscribe to one or more topics and (3) publish messages to a user-specified topic.

The functionality is similar to (though simpler, less pretty) version of the "Test" tab in the AWS IoT console:

Screenshots

alt text alt text

Deployment with Amplify Console (website hosted by AWS)

JULY 2020 NOTE the Amplify Console docs below are missing the part where I walk you threw updating src/aws-iot-configuration.js, which is needed so the website knows which AWS IoT endpoint and Cognito Identity pool to use. Refer to the new (updated) "Local Deployment" steps for a working guide. If you wanted to use that with the hosted Amplify Console, you'd need to clone this project, update the aws-iot-configuration.js file, then publish the project to your own GitHub repository before following the steps below.

  1. Navigate to the Amplify Console Home Page

  2. Choose "Connect App" and link to the https://github.com/matwerber1/aws-amplify-react-template GitHub repo.

  3. Deploy the app from the Amplify Console

  4. Once app completes, navigate to app endpoint (as shown in Amplify console), and create yourself a new user.

  5. Log in to the endpoint (as shown in Amplify Console) with your newly-created user.

  6. Make note of the "Auth Identity ID".

  7. Per instructions in manual-steps.md, create a new IoT policy named "ReactIotPolicy".

  8. Per instructions in manual-steps.md, issue CLI command to grant your user's auth identity ID (Step 6) access to the new IoT policy (Step 7).

  9. Per instructions in manual-steps.md, edit your authorized users' IAM role to have permission to connect/publish/subscribe to AWS IoT.

  10. That should be it!

Local Deployment (website on localhost)

  1. Clone the repo
git clone https://github.com/matwerber1/aws-amplify-react-iot-pub-sub-demo
  1. move to project root
cd aws-amplify-react-iot-pub-sub-demo
  1. Install dependencies
npm install
  1. Initialize Amplify
amplify init
  1. Push / create your backend
amplify push
  1. Navigate to the AWS IoT web console and:

  2. Click Settings in the lower left, and copy your Endpoint to a text file; you'll need this later. It would look similar to below:

```
a2mvse68411234-ats.iot.us-west-2.amazonaws.com
```
  1. Navigate to the Cognito Co thensole and:

  2. Click Manage Identity Pools (not user pools)

  3. Click the pool name for your app, it should look similar to cognito81d9f49f_identitypool_81d9f49f__dev

  4. Copy the Sample Code link on left, and in the code example, copy your Identity Pool ID to a text file; you'll need this later. It will look like us-west-2:970761d2-56b8-4057-9eb6-f7e01cd9ade6

  5. Open src/aws-iot-configuration.js and:

  6. set the endpoint to the value from above. Be sure to prefix the endpoint value with wss:// (for websockets) and add a suffix of /mqtt, as in the example below.

  7. Set the host to the endpoint value as-is.

  8. Specify your AWS region

  9. Set the pool ID to the Cognito Pool ID you gathered from above.

// src/aws-iot-configuration.js
var awsIotConfiguration = {
  endpoint: 'wss://a2mvse6841elo7-ats.iot.us-west-2.amazonaws.com/mqtt', 
  region: 'us-west-2',
  poolId: 'us-west-2:970761d2-56b8-4057-9eb6-f7e01cd9ade6',
  host: 'a2mvse6841elo7-ats.iot.us-west-2.amazonaws.com'
};
  1. Navigate to the AWS IoT Security Policy web console and:

  2. Click Create Policy

  3. Give the policy a name like ReactIoTPolicy

  4. Click Advanced Mode

  5. Paste in the following policy:

```json
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "iot:*",
      "Resource": "*"
    }
  ]
}
```
  1. Click Create

  2. Using the Cognito Identity ID from earlier, run the following AWS CLI command:

aws iot attach-principal-policy --policy-name 'ReactIoTPolicy' --principal '<YOUR_COGNITO_IDENTITY_ID>'

It would look like:

aws iot attach-principal-policy --policy-name 'ReactIoTPolicy' --principal 'us-west-2:d8b273d6-8d18-4fe7-81df-7d2ddd77587a'
  1. Navigate to the AWS IAM Console and search for the IAM role for your authorized Cognito Identity pool users. It will have a name similar to arn:aws:iam::123456790:role/amplify-awsamplifyreacttempl-dev-115859-authRole and have a creation time that matches the date your deploying this project. Be sure to select the authRole, not the unauthRole

  2. Click Attach Policies

  3. Search for and select the AWSIoTFullAccess policy

  4. Run the website locally

npm run start
  1. Navigate to localhost:8080, sign up, and test!

About

Create simple AWS IoT MQTT pub/sub test page using AWS Amplify + React

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 84.9%
  • HTML 8.1%
  • CSS 7.0%