davidepal
lvl.1
Italy
Offline
|
Hi everyone,
I'm a newbie developer and I'm implementing a logic to get the first geolocation of aircraft. I run this block of instructions:
KeyManager.getInstance().getValue(KeyTools.createKey(FlightControllerKey.KeyAircraftLocation3D), new CommonCallbacks.CompletionCallbackWithParam<LocationCoordinate3D>() {
@Override
public void onSuccess(LocationCoordinate3D locationCoordinate3D) {
Log.i(TAG, "AircraftLocation: " + locationCoordinate3D.toString());
}
@Override
public void onFailure(@NonNull IDJIError error) {
Log.e(TAG, "AircraftLocation Error: " + error);
}
});
but is invoked onFailure method, with this error:
ErrorImp{errorType='CORE', errorCode='REQUEST_TIMEOUT', innerCode='', description='null', hint='error.
What Am I doing wrong?
Translator
|
|