Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'm calling the GET statement for WooCommerce Order API, and to limit the result set I'm always using before and after parameters.

However, even if the given dates are ISO8601 compliant and with Z to signal it's UTC, API is still returning as if the date parameters are in local timezone:

API GET Statement URL:

[siteurl]/wp-json/wc/v2/orders?after=2021-01-12 12:15:15Z&before=2021-01-12 12:15:17Z

Postman response

The order I got as a result has this for date_created:

"date_created": "2021-01-12T12:15:16",
"date_created_gmt": "2021-01-12T17:15:16",

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
3.9k views
Welcome To Ask or Share your Answers For Others

1 Answer

等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...