Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 582 Bytes

README.md

File metadata and controls

33 lines (30 loc) · 582 Bytes

aws-amplify-cognito-fb-auth

Simple React based AWS Amplify app connected with AWS Cognito & Facebook calling protected Lambda function

Technology stack / Tools used

  • AWS API Gateway
  • AWS Cognito
    • User Pools
    • Federated Identities
  • AWS Amplify
  • AWS Lambda
  • React
  • Facebook Login API

Configuration

config.js

export default {
    apiGateway: {
        REGION: "",
        URL: ""
    },
    cognito: {
        REGION: "",
        USER_POOL_ID: "",
        APP_CLIENT_ID: "",
        IDENTITY_POOL_ID: ""
    },
    social: {
        FACEBOOK: ""
    }
};