Book Image

Building Distributed Applications in Gin

By : Mohamed Labouardy
4 (1)
Book Image

Building Distributed Applications in Gin

4 (1)
By: Mohamed Labouardy

Overview of this book

Gin is a high-performance HTTP web framework used to build web applications and microservices in Go. This book is designed to teach you the ins and outs of the Gin framework with the help of practical examples. You’ll start by exploring the basics of the Gin framework, before progressing to build a real-world RESTful API. Along the way, you’ll learn how to write custom middleware and understand the routing mechanism, as well as how to bind user data and validate incoming HTTP requests. The book also demonstrates how to store and retrieve data at scale with a NoSQL database such as MongoDB, and how to implement a caching layer with Redis. Next, you’ll understand how to secure and test your API endpoints with authentication protocols such as OAuth 2 and JWT. Later chapters will guide you through rendering HTML templates on the server-side and building a frontend application with the React web framework to consume API responses. Finally, you’ll deploy your application on Amazon Web Services (AWS) and learn how to automate the deployment process with a continuous integration and continuous delivery (CI/CD) pipeline. By the end of this Gin book, you will be able to design, build, and deploy a production-ready distributed application from scratch using the Gin framework.
Table of Contents (16 chapters)
1
Section 1: Inside the Gin Framework
3
Section 2: Distributed Microservices
9
Section 3: Beyond the Basics

Authenticating with Auth0

So far, the authentication mechanism is built in within the application. Maintaining such a system might be a bottleneck in the long run, which is why you might need to consider an external service such as Auth0. This is an all-in-one authentication solution that gives you access to powerful reporting and analytics as well as a role-based access control (RBAC) system.

To get started, follow these steps:

  1. Create a free account (https://auth0.com/signup). Once created, set up a tenant domain in the region where you're located, as illustrated in the following screenshot:

    Figure 4.25 – Auth0 tenant domain

  2. Then, create a new API called Recipes API. Set the identifier to https://api.recipes.io and the signing algorithm to RS256, as illustrated in the following screenshot:

    Figure 4.26 – Auth0 new API

  3. Once the API is created, you need to integrate the Auth0 service into the API. Download the following Go packages:
    go get -v gopkg...