From ff63e29cac63c1f6117e050c273b021955614896 Mon Sep 17 00:00:00 2001 From: Demis Bellot Date: Thu, 28 Nov 2024 14:06:21 +0800 Subject: [PATCH] Add API Keys podcast --- .../2024-11-28_apikey-credentials-auth.md | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 MyApp/_podcasts/2024-11-28_apikey-credentials-auth.md diff --git a/MyApp/_podcasts/2024-11-28_apikey-credentials-auth.md b/MyApp/_podcasts/2024-11-28_apikey-credentials-auth.md new file mode 100644 index 00000000..8d66f2b1 --- /dev/null +++ b/MyApp/_podcasts/2024-11-28_apikey-credentials-auth.md @@ -0,0 +1,21 @@ +--- +title: Simple API Keys Credentials Provider for .NET 8 C# Microservices +summary: Improved Simple Auth using API Keys and Admin UI that's ideal for .NET 8 C# Microservices +tags: [ .net8,auth,apikeys ] +url: https://media.servicestack.com/podcasts/apikey-credentials-auth.mp3 +media: {size:3618860,duration:904.656000,format:mp3} +--- + +This episode explores the a new improved authentication system for .NET 8 C# microservices using API keys. +API keys provide persistent user sessions, eliminating the need for repeated key entry. +An Admin Auth Secret allows administrators access to additional functionalities. + +The system supports both coarse-grained and fine-grained API key access control, enabling restricted access to +specific APIs based on key scopes or API Key validation. + +This approach simplifies authentication for microservices like AI Servers, offering a streamlined alternative +to more complex authentication mechanisms. + +### Links + +- [Blog Post](/posts/apikey-credentials-auth)