Lesson 23 – Implement Login User API with PASETO/JWT Access Tokens in Go
In the previous lesson, we implemented a token maker interface using both JWT and PASETO, with methods to create and […]
In the previous lesson, we implemented a token maker interface using both JWT and PASETO, with methods to create and […]
In the last lecture, we learned about token-based authentication and why PASETO is more secure and easier to use than JWT.In this tutorial,
Token-based authentication is a cornerstone of modern web development. For years, the go-to standard has been the JSON Web Token
Introduction: The Modern Health Paradox We’ve never lived longer than we do today, yet we’ve never been sick for such
In the previous lesson, we learned how to securely store users’ passwords using bcrypt and implemented the createUser API. We
This tutorial demonstrates how to securely store user passwords using bcrypt hashing in a Golang banking application. We’ll implement password
This tutorial demonstrates how to properly handle PostgreSQL database errors in Golang applications, focusing on foreign key violations and unique
So far from our previous tutorial till now, our simple bank system supports creating, updating, retrieving, and transferring money between
This tutorial will guide you through implementing a transfer money API, including creating a custom validator for currency fields. This
In previous lesson we learn how to implement the API, when it comes to testing. This tutorial demonstrates how to