I’m trying to figure out if there’s a way to create a backend solution without having to set up and maintain a full server.
Here’s what I’m working with:
- There’s some data I need to access that’s protected by login credentials (it’s behind an IBM Portal system)
- I want to grab this specific data and display it in a news feed on our internal company website
- The portal can be reached from both inside and outside our network
- I need something that can handle the login process, fetch the data, and return it for display
- I can’t mess with the existing IBM Portal security settings just for this one piece of content
- I really don’t want to spin up another server or service if I can avoid it (we have a web server but I can’t use it for this, and getting approval for new infrastructure is a nightmare)
Basically I need this to work like a standalone script that I can call via HTTP but keeps the authentication details safe and hidden from users. Is there a way to do this without a traditional server setup, or am I stuck needing to build a proper API service?
Any suggestions would be really helpful!