Golang
GO JWT Authentication and Authorization Tutorial
In this article, I will show how to authenticate a user and authorize access to resources in our application. Authenticate and authorize are two different
Golang Fuzz Tutorial With Examples
In this guide, we'll go over the fundamentals of fuzzing in Go. We will create some fuzz tests for functions using the go command, and troubleshoot and debug
What does underscore in front of import statement mean in GO?
The underscore in front of an import statement is solely for its side-effects.
How to get current directory in Golang? [SOLVED]
There are 4 different methods to get current directory in golang. Method-1: The os package and Executable() function Method-2: file/filepath and the Abs() …
How to make Golang POST JSON request? [SOLVED]
In the previous chapter, we have shown you some examples of working with the HTTP server and client in Golang. The built-in package net/http in Go provides
