curl -H "nonce: Your Nonce" -H "accessKey: Your Access Key" -H "signature: Your Signature" https://translate.rozetta-api.io/api/v1/dictionary
func GetUserDictionaryEntries(basePath string) {
apiURL := "/api/v1/dictionary"
client := &http.Client{}
req, _ := http.NewRequest("GET", GetFullUrl(basePath, apiURL), nil)
res, err := client.Do(req)
if err != nil {
fmt.Printf("The HTTP request failed with error %s\n", err)
} else {
data, _ := ioutil.ReadAll(res.Body)
fmt.Println(string(data))
}
}