Authentication
All internal microservices (except public routes) are protected by a centralized authentication system. Clients must first obtain a JSON Web Token (JWT) via the API Gateway.Login & Get Token
Posts Service
The Content Service handles all post-related logic, interacting with the DB Service securely behind the scenes.Create a New Post
Requires Authentication: Include the JWT in theAuthorization header.
Likes Service
Independent service dedicated to handling user interactions with posts.Like a Post
Requires Authentication: Include the JWT in theAuthorization header.