TAG

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

By antonyshikubu · 12 min read · GO

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

By tuannguyen · 8 min read · GO

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() …

By tuannguyen · 4 min read · GOLANG Solutions

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

By tuannguyen · 4 min read · GOLANG Solutions