Consuming REST API in GO



Consuming REST API is really simple in GO. The net/http comes with GO standard modules, which we are going to use in this article.

package main



import (

"encoding/json"

"fmt"

"io/ioutil"

"log"

"net/http"

)



func getMovieDetails(m...



Read: https://prashant2018.hashnode.dev/consuming-rest-api-in-go