GoogleApiException: "Could not parse tourist_attraction"
See original GitHub issueThis is a regression in 4.3.0 and it is still reproducible in 4.3.2. It works in 4.2.6.
The following code results in a GoogleApiException: “Could not parse tourist_attraction”:
LocationGeocodeRequest request = new LocationGeocodeRequest
{
Key = this.apiKey,
Location = new(37.139328, -113.605431),
};
GeocodeResponse response = await GoogleMaps.Geocode.LocationGeocode.QueryAsync(request, default);
Issue Analytics
- State:
- Created 9 months ago
- Comments:6 (6 by maintainers)
Top Results From Across the Web
Utilities.parseCsv() 'Could not parse text' (Google Apps ...
It crashes on that 3rd line. When debugging, I see everything looks normal... file is an object, csv is a string and based...
Read more >Resolve errors | Google Drive
Drive apps should catch and handle all errors that might be encountered when using ... Note: This list is not exhaustive, other cases...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

I will add the missing enum
Seems to be working. Thank you!!