Hi All,
I realise this is not a backendless issue, but thought i could put it out there to see if anyone has had similar issues recently, and as always any assistance is apprecaited.
over the last three days i have no longer been able to request directions using Google directions API
`**
- @param {String} origin
- @param {String} destination
- @param {String} [waypoints]
- @param {String} [avoid]
- @param {String} units
*/
async getDirections(origin, destination, waypoints, avoid, units, key) {
const result = await Backendless.Request.get(‘https://maps.googleapis.com/maps/api/directions/json’)
.query({
origin: origin,
destination: destination,
waypoints: waypoints,
avoid: avoid,
units: units,
key: this.getGoogleAPIKey()
})
return result;
}
`
It returns the following in console.
{routes: Array(0), geocoded_waypoints: Array(3), status: ‘NOT_FOUND’}
It has worked perfectly for over a year and suddenly stopped three days ago.
Really stumped.
Kind Regards,
Raymond