使用Manatee.Trello处理Trello webhook响应

时间:2013-08-16 16:35:45

标签: c# webhooks trello manatee.trello

我有一个源自Trello的webhooks的实现。 JSON响应被放入队列中,我正在编写将处理此队列的代码。我正在使用Manatee.Trello与Trello交谈。

Trello的webhook响应包括动作和模型。我不关心模型,但需要对动作及其相关数据做出反应。我看到Manatee.Trello有所有Actions的类,但是我不知道如何将我代表该动作的JSON反序列化到适当的类中。

我目前正在使用Manatee.Json类来分解数据,但我宁愿拥有完全类型化的类来处理。

1 个答案:

答案 0 :(得分:1)

乔尔,你可能已经看过了,但我想最终回答这个问题。

我已将Webhook实现添加到Manatee.Trello。要使用它,您需要将从Trello收到的POST的字符串内容传递到TrelloService.ProcessWebhookNotification(string content)。库将自动反序列化它并更新相应的实体。

有关实施的更多信息,请参阅https://bitbucket.org/gregsdennis/manatee.trello/wiki/Webhooks