Skip to content

Fix for "We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner." #17

@GuidedCommerce

Description

@GuidedCommerce

As of 3/12/24 Trello no longer allows body parameters to be sent in GET requests, the body must be blank, if you do you'll receive the following error:

We can't connect to the server for this app or website at this time. There might be too much traffic or a configuration error. Try again later, or contact the app or website owner.

To fix:


if (method === "GET") {
     options.json = true;  // this was the fix for me
}

  request[method === 'DELETE' ? 'del' : method.toLowerCase()](options, function (err, response, body) {
     ....

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions