如何使用 API 将产品添加到 Squarespace?
How do you add products to Squarespace with the API?
我的一个朋友让我将他们的产品数据库连接到他们的 Squarespace 网站。
但是,我找不到任何允许我添加产品或从网站获取产品的 API 调用。
我想做的事情:
- POST 从外部数据库到 Squarespace 的所有产品
- 产品售出时获取通知(网络钩子)
- PUT(更新)产品在网站或其他地方售出后。
任何链接或在哪里可以找到此信息的建议都很棒! :)
尽管限制可能令人惊讶,但 Squarespace developer docs 在这一点上是正确的:
With the Squarespace Commerce API, you can build applications that
manage data from your Squarespace store. HTTP endpoints are provided
which allow you to:
- Retrieve orders
- Update orders with fulfillment information
在撰写本文时,这就是您可以使用 API 做的所有事情。因此目前无法添加产品、接收购买通知或更新产品状态。。
关于接收购买通知,你只能在某种时间表上检索订单信息并与上一组数据进行比较以发现新订单,这并不是一个好的解决方案在我看来,但我想我会提到它。
我的一个朋友让我将他们的产品数据库连接到他们的 Squarespace 网站。 但是,我找不到任何允许我添加产品或从网站获取产品的 API 调用。
我想做的事情:
- POST 从外部数据库到 Squarespace 的所有产品
- 产品售出时获取通知(网络钩子)
- PUT(更新)产品在网站或其他地方售出后。
任何链接或在哪里可以找到此信息的建议都很棒! :)
尽管限制可能令人惊讶,但 Squarespace developer docs 在这一点上是正确的:
With the Squarespace Commerce API, you can build applications that manage data from your Squarespace store. HTTP endpoints are provided which allow you to:
- Retrieve orders
- Update orders with fulfillment information
在撰写本文时,这就是您可以使用 API 做的所有事情。因此目前无法添加产品、接收购买通知或更新产品状态。。
关于接收购买通知,你只能在某种时间表上检索订单信息并与上一组数据进行比较以发现新订单,这并不是一个好的解决方案在我看来,但我想我会提到它。