Hi tulsiwdv
Thanks for using our code samples!
There was a missing req parameter in the app.get.
Please clone the repo again, to receive the fix, or make this change to get the GET function to work.
From
app.get('/', (res) => {
res.send('GET Pong!');
});
To
app.get('/', (req, res) => {
res.send('GET Pong!');
});
I would suggest to look in your ngrok you will see the 200OK arriving even thought he dashboard reports 400 error
Let us know how you proceed
Roland-Ian
... View more