Hello there,
Hope you are doing good.
This week I want to introduce you to Authorization and How to implement Authorization for a Web API in ASP.NET Core.
.NET provides us with 3 ways of implementing Authorization depending on the requirement and the use-cases.
In this article, I touch base on all the 3 mechanisms with explaining examples, so you don't need to look up for another content.
Article Link - https://codingramen.com/blog/how-to-authorize-requests-in-asp-net-core-web-api/
I hope you find the content informative and useful.
I have created a new Substack publication, where I can create all forms of content.
I'd love for you to subscribe my channel and show your support. Thanks!
Have a great week.
Cheers
Ram
If you're starting in software engineering or an experienced professional, I post informative content around stuff I work with - Full Stack Development. Subscribe to my newsletter to receive my latest posts.
Hello there, Hope you are doing good. In this week's newsletter, I want to introduce you to the third principle of the SOLID principles: five principles describing few fundamental rules for developing arguably ideal software components which are scalable, extensible, robust and flexible - the Liskov Substitution Principle. This principle can be termed as one of the basic foundations of the Object Oriented Design languages which talks mainly about substitutions and inheritance. The principle...
Hello there, Hope you are doing good. In this week's newsletter I want to introduce you to one of the most efficient internal sorting algorithm, and discuss how to implement it - Quicksort algorithm step by step with an example and analyze time complexity. Quick Sort is an internal sorting technique which can be used to arrange a given set of unordered dataset into required order. It is the most efficient internal sorting technique, which doesn’t use any auxiliary memory (or additional space...
Hello there, Hope you are doing good. In this week's newsletter, I want to introduce you to the fourth principle of the SOLID principles - Interface Segregation. In the early stages of application development, it’s common to place all logic into a single class. As the application grows, these classes become bloated or “fat” with unrelated responsibilities. Later, when we try to extract interfaces from these classes for modularity or extension, we may end up with interfaces containing many...