Hello,
please find the code attached below.
the following is compiled successfully but while running it's giving an error :
terminate called after throwing an instance of 'web::json::json_exception'
what(): Unexpected token near line 1, column 1
Aborted (core dumped)
the below code is running successfully for all API's except the google api .
A few of google API for which it is giving error are :
http://maps.google.com/maps/api/geocode/json?address=phase2+electronic%20city,bangalore,karnataka&sensor=false
http://maps.googleapis.com/maps/api/geocode/json?latlng=12.854911,77.668072&sensor=true
Comments: Hello, What is going on is that the JSON parser is finding something unexpected in the input, i.e. the response from Google maps. In order for us to be able to advice, you will need to get text representation of the response. The headers and the first few lines of the JSON body should suffice. Call 'to_string()' on the HTTP response instead of calling extract_json(). Niklas
please find the code attached below.
the following is compiled successfully but while running it's giving an error :
terminate called after throwing an instance of 'web::json::json_exception'
what(): Unexpected token near line 1, column 1
Aborted (core dumped)
the below code is running successfully for all API's except the google api .
A few of google API for which it is giving error are :
http://maps.google.com/maps/api/geocode/json?address=phase2+electronic%20city,bangalore,karnataka&sensor=false
http://maps.googleapis.com/maps/api/geocode/json?latlng=12.854911,77.668072&sensor=true
Comments: Hello, What is going on is that the JSON parser is finding something unexpected in the input, i.e. the response from Google maps. In order for us to be able to advice, you will need to get text representation of the response. The headers and the first few lines of the JSON body should suffice. Call 'to_string()' on the HTTP response instead of calling extract_json(). Niklas