YOU ARE AMAZING YOU ARE AMAZING YOU ARE AMAZING This short video summarizes many topics which needs hours to be explained.
@PeterWhite-ru6qk10 ай бұрын
First out of many that have actually worked, thank you so much.
@Hitchon10 ай бұрын
Great 👍 glad you got things working!
@oskee1334Ай бұрын
Fantastic! I actually learned something new. One thing though, it seems like Lambda code should have been "deployed" at 7 min mark. But it wasn't explicitly mentioned in the video.
@nickdrinkwater20448 ай бұрын
This is a great tutorial, super straight forward and easy to understand, thank you!!
@andrewlin66008 ай бұрын
You covered it all, great vid!
@EnjoyGames_7 ай бұрын
This tutorial really worked for me, keep it up! :)
@mv15979 ай бұрын
This was a massive help with my uni assignment. Thanks and keep it up!
@Hitchon9 ай бұрын
You too wish you good luck and success with your studies !
@paulohss24 ай бұрын
Great stuff mate!
@tech_channel1108 ай бұрын
Nice one
@ryan.d.gilbert7 ай бұрын
Amazing tutorial THANK YOU!
@leulmesfin026 ай бұрын
Great tutorial!!
@neerajmanral709311 ай бұрын
I am not getting the http method in event and if i print the event it only prints the payload.. i want to fetch the http method but i am unable to do that
@rakeshthakur41039 ай бұрын
Great work..thanks ❤❤❤❤
@slaviksemen49193 ай бұрын
bro, thanks a lot
@baotranngoc7986 Жыл бұрын
Thank you, the video instructions are very specific and detailed. I have a question, if I change the body in postman to x-www-urlencoded, which code in the lambda should I change and how? Can you guide me, thank you.
@Hitchon Жыл бұрын
Hi, Thanks for watching :) you'll need to make a few changes in the way the Lambda function parses the request body in POST, PATCH, and DELETE. Let me show you POST as an example, So You'll need this -> from urllib.parse import parse_qs And then you will need to replace -> response = save_employee(json.loads(event['body'])) With the following code: parsed_body = parse_qs(event['body']) for key in parsed_body: parsed_body[key] = parsed_body[key][0] response = save_employee(parsed_body) I have not tested it but I think above would help achieve what you need. Hope this helps!
@baotranngoc7986 Жыл бұрын
@@Hitchon Thank you very much. Hope you can release more aws tutorial videos, I'm looking forward to them.
@Nexus22086 ай бұрын
Thanks!
@regilearn21387 ай бұрын
please use react for future project
@memoriesofAk5 ай бұрын
{"message":"Missing Authentication Token"} When i tried to test the API from browser i got this error.
@anyetitan84102 ай бұрын
Go to the python code and check if you are working in the region as that written in the code.