Simplifying Authentication and Authorization in Microservices: A Practical Approach

In one of my YouTube videos, I explored authentication and authorization in microservice, presenting three approaches and highlighting the one I personally prefer. If you’d like to revisit that discussion, you’ll find the video link for this topic which I covered on YouTube here. Let’s dive into my preferred approach and expand on a common … Read more

Microservice resilience – Circuit Breaker using polly in .Net Core

In a microservices environment, usually, multiple services talk to each other either. Some cases through HTTP calls, whereas in other cases using an event bus or queues. Circuit Breaker is an important pattern which helps to make microservices more resilient in these communication patterns. When services communicate with each other through HTTP calls, there is … Read more