解析REST api查询约束,其中createdAt等于昨天

时间:2013-12-11 19:23:22

标签: django get parse-platform

我正在使用带有Django的Parse.com REST api并且我正在尝试编写一个GET查询,因为“createdAt”datetime字段等于“昨天”(日期)

我对其他查询没有任何问题,但似乎无法找出查询createAt的最佳方法。

非常感谢任何反馈。

解析文档 https://parse.com/docs/rest#queries-constraints

我的GET查询

c = 'where={"createdAt":YESTERDAY GOES HERE}'
resp_trainers = sess.get('https://api.parse.com/1/users', params=c)

1 个答案:

答案 0 :(得分:2)

您需要将日期指定为日期,而不是字符串。 试试

'where={"createdAt":{"__type":"Date", "iso":"2014-12-10T00:00:00.000Z"}}'