Yes, the problem is that we are cannot perform any requests (android and ios)
exactly
I have created internal ticket BKNDLSS-13547
Using sync method without error, you should catch Fault exception, for example:
func loginUser(email: String, password: String) {
Types.tryblock({ () -> Void in
let user = self.backendless?.userService.login(email, password: password)
print("User has been logged in (SYNC): \(user!.email)")
},
catchblock: { (exception) -> Void in
print("loginUser: server reported an error: \(exception as! Fault)")
})
}
Alexandr,
I’d like to make sure we captured the use-case correctly in the internal ticket.
You sign in and do not make any API calls for some time. After that if you make a call you get an error saying the session has expired (which is expected). Is the problem that you cannot make the logout() call because it results in an error?
Yes, exactly
logout returns the same error - 3048
Dealing with error 3048 during android development…
How can we reproduce the problem?