-1

我无法获取fromto过滤日历条目。

例如,这给了我日历的所有条目(包括 2017 年的条目):

https://app.clio.com/api/v4/calendar_entries?calendar_id=12345&from=2018-04-15T02%3A09%3A39Z&fields=id%2C+etag%2C+calendar_owner%2C+start_at%2C+end_at%2C+all_day

这对我来说看起来像是正确的 ISO 8601,我也尝试了不同的格式(包括非 url 编码的版本),但没有任何运气。

我如何使它工作?

4

1 回答 1

0

好吧,所以格式实际上不是 ISO8601。由于 PHP 错误,它的日期格式如下:

2018-05-03T05:39:32+0000但应该是这样的:2018-05-03T05:39:32+00:00

我改成格式DateTime::ISO8601了。DateTime::ATOM

于 2018-05-03T05:40:50.063 回答