Impl: whoami API

main
Manish 1 year ago
parent f19df338ca
commit 9ad129b937

@ -20,8 +20,12 @@ app.get("/", function (req, res) {
});
// your first API endpoint...
app.get("/api/hello", function (req, res) {
res.json({ greeting: "hello API" });
app.get("/api/whoami", (req, res) => {
res.json({
ipaddress: req.headers["cf-connecting-ip"] || req.ip,
language: req.headers["accept-language"],
software: req.headers["user-agent"],
});
});
// listen for requests :)

2130
package-lock.json generated

File diff suppressed because it is too large Load Diff
Loading…
Cancel
Save