Last active
October 4, 2018 17:22
-
-
Save rbren/094f4f88168352ccb4d31046afc577f6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
service: serverless-contact | |
provider: | |
name: aws | |
runtime: nodejs6.10 | |
functions: | |
contact: | |
handler: handler.contact | |
events: | |
- http: | |
path: contact | |
method: post | |
cors: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi i followed your instructions on your medium article and when i submit my form on the frontend i get redirected to my aws site, which gives me this
{ "message": "Missing Authentication Token" }
- any suggestions?