mirror of
https://github.com/healthchecks/healthchecks.git
synced 2026-04-25 15:05:49 +03:00
[GH-ISSUE #806] Trello Integration returning error 400 #566
Labels
No labels
bug
bug
bug
feature
good-first-issue
new integration
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/healthchecks#566
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @daviewales on GitHub (Mar 20, 2023).
Original GitHub issue: https://github.com/healthchecks/healthchecks/issues/806
I'm trying to setup a Trello integration, but it's returning error 400.
What works:
I can click the integration, authorise Healthchecks access to Trello, and even select a Trello board and list:
What doesn't work
After I click the 'Save integration' button, I get error 400 from the POST to
https://healthchecks.io/projects/abc-123/add_trello/(Note: Fake project ID used in URL above)
@cuu508 commented on GitHub (Mar 20, 2023):
Thanks for the report.
I'd like to see the POST data in the request that returns 400. The POST data should contain an access token, the board name, the list name, and the list ID. I don't need the actual values, but only their lengths, and if any of them is empty or absent.
@daviewales commented on GitHub (Mar 21, 2023):
Thanks @cuu508, here's the POST data:
@cuu508 commented on GitHub (Mar 29, 2023):
Trello increased the length of auth tokens. This caused our Trello onboarding form validation to fail, as it was expecting the token length to be a single, fixed value (64 characters). Fixed, and should work now!
@daviewales commented on GitHub (Mar 29, 2023):
Thank you!