The BRANCH piece failed, but the flow worked. What happened here? >>> error_description": "Invalid Credentials"

UPDATE: It seems like the server is having a problem, and I have reported this as a BUG:

This is from the failed piece:

{
  "conditions": [
    [
      {
        "operator": "TEXT_CONTAINS",
        "firstValue": "https://mydomain1.com https://mydomain2.com",
        "secondValue": "https://mydomain2.com,
        "caseSensitive": false
      }
    ]
  ],
  "inputUiInfo": {}
}

And the output was:

{
  "stepName": "step_41",
  "errorMessage": {
    "response": {
      "status": 401,
      "body": {
        "error": "invalid_request",
        "error_description": "Invalid Credentials"
      }
    },
    "request": {}
  }
}

So the branch should have been “true”, and the rest of the flow worked. But I am trying to get this flow stabile before building upon it.

Actually another in-built piece failed too. The Gmail one:

{
  "response": {
    "status": 401,
    "body": {
      "error": "invalid_request",
      "error_description": "Invalid Credentials"
    }
  },
  "request": {}
}

I too have this same error when sending gmail when in production. Using Gmail v0.4.3
This doesn’t happen in the test flow though.

{
  "response": {
    "status": 401,
    "body": {
      "error": "invalid_request",
      "error_description": "Invalid Credentials"
    }
  },
  "request": {}
}```

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.