What Azure service is best for a facade API?

0
3
Asked By SillyPineapple42 On

I'm looking to set up a facade API for two backends, both of which expose REST APIs and can also send messages over WebSockets. Ideally, I want to hide the backends behind this facade and have the ability to define inbound/outbound rules, implement custom authentication logic in .NET, and maintain the WebSocket connections. The client is a web application that will use both APIs. I'm curious if there is an Azure service that fits this need, or should I consider building my own solution, like using YARP?

3 Answers

Answered By CloudWiz123 On

Consider going with Azure Application Gateway along with a Web Application Firewall. It allows for custom domain exposure, custom rules, and might fit your needs well.

Answered By CodeNinja99 On

Azure API Management works great for this! If you'd rather stick with .NET solutions, YARP could also be a solid choice if you're looking for something more cost-effective.

Answered By TechGuru88 On

You might want to try using Azure API Management. It's pretty robust for handling facade APIs and can manage your routing and rules nicely.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.