Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我打电话时
$oauthClient->fetch($resourceUrl .. )
我需要这样的东西
$resourceUrl = "www.myaps/api/rest/orders?filter[0][attribute]=created_at&filter[0][from][0]=2013-09-04 12:53:32";
但这不起作用。
我需要接受在特定时间之后创建的所有订单吗?但我不知道如何在rest API中使用'from' :(
有什么帮助吗?
我找到了答案
filter[0][attribute]=created_at&filter[0][from][0]=2012-09-04%2012:53:32"
关键是在日期和时间之间使用“%20”