Skip to main content

IP Geolocation API – IPWHOIS.IO

The Geolocation is identification of an object in a geographic location. It includes information related to latitude, longitude, address, country code, country, zip code and more.

Geolocation data is useful for businesses to know about customers to target with relevant information. Due to importance, the businesses always looking for geolocation data of their customers. It’s not an easy task to get the accurate geolocation data, but thanks to the IPWHOIS.IO Geolocation API which provide the accurate geolocation solution.

IPWHOIS.IO provide fast and accurate gelocation data from across the world. The API is very easy to integrate and deliver results in JSON, XML or Newline format. It is totally free for up to 10,000 requests per month. IPWHOIS.IO API is used by thousands of developers all around the world. (more…)

Working with Structs in Golang

In our previous tutorial, we have explained to work with Date and Time in Golang. In this tutorial, we will explain how to work with Structs in Golang.

Structs in Golang is a ability to create user-defined data type from group of data fields with different data types. The data field in a struct can be declared with built-in or user-defined data types.

The concept of struct can be compared with the object-oriented programming which supports composition but not inheritance. (more…)

Working with Date and Time in Golang

In our previous tutorial, we have explained How to Make HTTP Requests in Golang. In this tutorial, we will explain how to work with Date and Time in Golang.

Date and Time is a common functionality in web applications to display dates in different formats according to requirement. Sometimes we need to get current timestamp or sometimes need to convert timestamp into human readable date time format. In Golang, we can use Time package to handle date time functionality. (more…)

How to Make HTTP Requests in Golang

In our previous tutorial, we have explained about Channels in Golang. In this tutorial, we will explain how to make HTTP Requests in Golang.

There are net/http package is available to make HTTP requests. We just need tp import the package in our script and can use GET, POST, PostForm HTTP functions to make requests.

So here in this tutorial we will explain how to make GET, POST, PostForm HTTP requests in Golang. (more…)