From 48dcae9deecc99458ce21f475ec138fca5c68410 Mon Sep 17 00:00:00 2001 From: vlad-outscraper Date: Mon, 10 Oct 2022 16:19:18 +0300 Subject: [PATCH] docs --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1af77cb..f819425 100644 --- a/README.md +++ b/README.md @@ -34,21 +34,21 @@ client := outscraper.Client{ApiKey: "SECRET_API_KEY"} ```go // Search for businesses in specific locations: -results, _ := client.GoogleMapsSearchV2(map[string]string { +results, _ := client.GoogleMapsSearch(map[string]string { "query": "bars ny usa", "limit": "10", }) fmt.Println(results) // Get data of the specific place by id -results, _ := client.GoogleMapsSearchV2(map[string]string { +results, _ := client.GoogleMapsSearch(map[string]string { "query": "rChIJrc9T9fpYwokRdvjYRHT8nI4", "language": "en", }) fmt.Println(results) // Get reviews of the specific place by id -results, _ := client.GoogleMapsReviewsV3(map[string]string { +results, _ := client.GoogleMapsReviews(map[string]string { "query": "rChIJrc9T9fpYwokRdvjYRHT8nI4", "reviewsLimit": "20", "language": "en",