You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
When a server side error happens in the SecuredOnboardingService.verify() call, the exception is created without taking into account the upstream error message present in the response body.
Describe the solution you'd like
It should be handled in the same way as in SecuredOnboardingService.onboard(), which includes the upstream error in the exception message.
The text was updated successfully, but these errors were encountered:
@oliverrahner does the result have the same format as the onboard error has?
{
"error": {
"code": "0110",
"message": "Signing header is invalid, the request has timedout, or UTCTimestamp is not provided",
"target": "",
"details": []
}
}
Is your feature request related to a problem? Please describe.
When a server side error happens in the
SecuredOnboardingService.verify()
call, the exception is created without taking into account the upstream error message present in the response body.Describe the solution you'd like
It should be handled in the same way as in
SecuredOnboardingService.onboard()
, which includes the upstream error in the exception message.The text was updated successfully, but these errors were encountered: