Impl: whoami API

This commit is contained in:
Manish 2023-03-28 03:24:38 +11:00
parent f19df338ca
commit 9ad129b937
2 changed files with 1071 additions and 1067 deletions

View File

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

6
package-lock.json generated
View File

@ -1,13 +1,13 @@
{ {
"name": "request-header-parser-microservice", "name": "@radii-fcc-backend/request-header-parser-microservice",
"version": "0.0.2", "version": "0.0.2",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "request-header-parser-microservice", "name": "@radii-fcc-backend/request-header-parser-microservice",
"version": "0.0.2", "version": "0.0.2",
"license": "MIT", "license": "AGPL-3.0-or-later",
"dependencies": { "dependencies": {
"cors": "^2.8.1", "cors": "^2.8.1",
"dotenv": "^8.2.0", "dotenv": "^8.2.0",