We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have my server listening to webhook events like so:
$client = new Client(); $client->authenticate(Credentials::TrelloAPIKey, Credentials::TrelloAPIToken, Client::AUTH_URL_CLIENT_ID); $service = new Service($client); // Other event listeners here $service->addListener(Events::CARD_COMMENT, function (CardCommentEvent $event) { // do something here }); $service->handleWebhook();
However, when I comment on a card, nothing happens. Other triggers, like creating a card or changing a card's list, work perfectly.
The text was updated successfully, but these errors were encountered:
Use string instead of non-existent CommentInterface (see cdaguerre#60)
7370f80
Merge pull request #1 from rafistrauss/fix-comment-api
fb4f642
No branches or pull requests
I have my server listening to webhook events like so:
However, when I comment on a card, nothing happens. Other triggers, like creating a card or changing a card's list, work perfectly.
The text was updated successfully, but these errors were encountered: