Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
GuidedCommerce opened this issue Mar 13, 2024 · 0 comments

Comments

@GuidedCommerce
Copy link

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) {
     ....
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant