Google geo parameter
You can use the geo parameter with Google targets in a few different ways:
- Target using the full location name (
city,region,country
) as provided in Google CSV found here:
{
"target": "google_search",
"query": "pizza",
"geo": "London,England,United Kingdom"
}
- Target using the country name only:
{
"target": "google_search",
"query": "pizza",
"geo": "United Kingdom"
}
- Using coordinates and radius:
{
"target": "google_search",
"query": "pizza",
"geo": "lat: 32.4827, lng: -22.9384, rad: 5000"
}
There are exceptions and above formats will not work in all situations, in which case you will get an error stating that.
Updated 7 months ago