Manatee.Trello:卡片 Webhook

Manatee.Trello: Card Webhook

尝试使用 Manatee Trello(BRILLIANT 库)的 Webhook 功能,实时更新用户在看板上互动的卡片。

我运行这个代码:

Card card = new Search(SearchFor.TextInDescription("id: 2643"), modelTypes: SearchModelType.Cards).Cards.Single();
Webhook<Card> webhook = new Webhook<Card>(card, "http://<host>/api/webhooks/incoming/trello");

并得到这个错误:

StatusCode: 400, ReasonPhrase: 'Bad Request', Version: 1.1, Content: System.Net.Http.StreamContent, Headers:
{
  X-Content-Type-Options: nosniff
  Strict-Transport-Security: max-age=15768000
  X-XSS-Protection: 1; mode=block
  X-FRAME-OPTIONS: DENY
  X-Trello-Version: 1.598.0
  X-Trello-Environment: Production
  Access-Control-Allow-Origin: *
  Access-Control-Allow-Methods: GET, PUT, POST, DELETE
  Vary: Accept-Encoding
  Cache-Control: no-store, must-revalidate, no-cache, max-age=0
  Date: Sat, 19 Mar 2016 14:22:06 GMT
  ETag: W/"76-fa944d06"
  Content-Length: 118
  Content-Type: text/plain; charset=utf-8
  Expires: Thu, 01 Jan 1970 00:00:00 GMT
}

有人有想法吗?任何帮助将不胜感激。

Manatee.Trello.WebApi 中存在错误。似乎 Manatee.Trello.RestSharp 对于此调用没有问题。我会在发现问题后立即发布修复程序。

更新

我已将文本编码更新为 UTF-8。记录已解决的响应 JSON 数据也存在内部问题。

请下载 Manatee.Trello v1.8.3 和 Manatee.Trello.WebApi v1.0.3。这些版本应该可以解决这个问题。