Im using Here SDK (Explore) for Flutter, the account got billinginformations and right credentials. I can show a map and draw polylines on it.
But when i try to add a Route it doesnt work with following error:
E/routing ( 3234): [ERROR] routing - Routing error: 6, exception: These credentials do not >authorize access, error code: 403
the function to get the Route is the same from the examples:
_routingEngine.importCarRoute(routeLocations, CarOptions.withDefaults(), (routingError, routes) {
if (routingError == null) {
here.Route route = routes!.first;
_showRouteDetails(route);
_showRouteOnMap(route);
_logRouteSectionDetails(route);
_logRouteViolations(route);
} else {
var error = routingError.toString();
_showDialog('Error', 'Error while calculating a route: $error');
}
});