Trello Api:列出给定日期范围内的所有卡片,考虑到 Trello 中卡片的最后 activity 日期?
Trello Api: list all cards for a given date range considering last activity date of the card in Trello?
我需要在 Trello 中列出给定日期范围内的所有卡片。我知道我可以使用 "since" 和 "before" 作为参数。但我不知道哪个日期会考虑这个过滤器。我需要它成为卡片的 "dateLastActivity"。所以,问题是,"Which date is using Since and Before arguments to do the search? Is there a way to list the cards that I need for a given date range considering dateLastActivity?" ...提前致谢。
下面显示的 api 调用的 since 和 before 参数查看卡片的创建日期。我对此进行了测试,发现仅返回自“2015-07-30”以来创建的卡片,即使同一板上的其他卡片上有 activity。
https://api.trello.com/1/board/[board id]/cards?fields=name,labels,url,idShort,idList,dateLastActivity&since=2015-07-30&key=[key]&token=[token]
我有同样的要求,只能在特定日期范围内使用 dateLastActivity 收集卡片,但发现不支持。我还尝试了 actions_since 参数,但这只会影响链接到卡片的结果集中出现的操作。它不会过滤掉卡片。我的解决方法是获取所有卡片,然后在我的程序中通过将日期范围与 dateLastActivity.
进行比较来过滤掉我不需要的卡片
我需要在 Trello 中列出给定日期范围内的所有卡片。我知道我可以使用 "since" 和 "before" 作为参数。但我不知道哪个日期会考虑这个过滤器。我需要它成为卡片的 "dateLastActivity"。所以,问题是,"Which date is using Since and Before arguments to do the search? Is there a way to list the cards that I need for a given date range considering dateLastActivity?" ...提前致谢。
下面显示的 api 调用的 since 和 before 参数查看卡片的创建日期。我对此进行了测试,发现仅返回自“2015-07-30”以来创建的卡片,即使同一板上的其他卡片上有 activity。
https://api.trello.com/1/board/[board id]/cards?fields=name,labels,url,idShort,idList,dateLastActivity&since=2015-07-30&key=[key]&token=[token]
我有同样的要求,只能在特定日期范围内使用 dateLastActivity 收集卡片,但发现不支持。我还尝试了 actions_since 参数,但这只会影响链接到卡片的结果集中出现的操作。它不会过滤掉卡片。我的解决方法是获取所有卡片,然后在我的程序中通过将日期范围与 dateLastActivity.
进行比较来过滤掉我不需要的卡片