Hey folks
I’m running into a weird issue with our app’s login system. We’re using an authentication API and it’s been acting up lately. About a third of the time it throws a 500 error saying ‘Backend Error’. This started happening out of the blue last week.
Here’s what the error looks like:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "serverIssue",
"message": "Server Problem"
}
],
"code": 500,
"message": "Server Problem"
}
}
The strange part is that it works fine most of the time. We haven’t changed anything in our code for months. Anyone else run into this? Could it be a problem on the API provider’s end? Maybe a faulty server in their system?