Blogs
-
gRPC Server and Client with Symfony
Monday, February 24, 2025 in Blogs
Introduction This is a demonstration on how to use a gRPC client to request data from a gRPC server. You’ll need protoc and grpc_php_plugin, you can download them following this section https://grpc.io/docs/languages/php/basics/#setup. gRPC …
-
Kong API Gateway + Keycloak
Saturday, February 22, 2025 in Blogs
Introduction It’s a showcase of Keycloak and Kong API Gateway (with JWT Plugin), and how they interact with a protected endpoint. NOTE: For the purpose of this demo, I’m not showing the full Keycloak configuration. Instead I have added …
-
JWT Authentication with NestJS
Saturday, February 01, 2025 in Blogs
Introduction In this post, I’ll show you how to implement a REST Api with the following endpoints: POST /api/v1/auth/register POST /api/v1/auth/login POST /api/v1/posts (authenticated user) DELETE /api/v1/posts (admin only) Current node version …