I want to build some routes for my todos, example:
So in order to do this I thought to check for the URL invoking the API (please if there is a better way call me out). I'm trying it out in a simple lambda first but can't get the URL, this is what I tried:
'use strict';
exports.handler = async (event) => {
let itsCallingFrom = event.requestContext.pathParameters;
const response = {
statusCode: 200,
body: JSON.stringify('Calling from: ' + itsCallingFrom),
};
return response;
};
This is how my Route looks:
/listalltodos
GET
This is what the event shows:
This is what I get: "Calling from: undefined"
Any idea how to get it?
Thanks
question from:
https://stackoverflow.com/questions/65866667/get-url-that-invoked-the-aws-http-api-using-lambda-node-js 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…