提问者:小点点

Shopify批处理API重定向


通过HTTP客户端使用POST,我们在使用我们创建的私有应用程序通过Shopify API向商店添加一些重定向时遇到了一些问题。

https://apikey:password@hostname/admin/redirects.xml 

我们收到HTTP/1.1 400错误请求,错误如下:

<error>Extra content at the end of the document</error>

尝试从Shopify API:http://api.shopify.com/redirect.xml.html#create输入示例代码

POST /admin/redirects.xml HTTP/1.1
Content-Type: application/xml

<?xml version="1.0" encoding="UTF-8"?>
<redirect>
  <path>/ipod</path>
  <target>/pages/itunes</target>
</redirect>

如果我们一次做一个重定向,那么如果我们有多个重定向,那么它就会失败,那么如何批量重定向呢?


共1个答案

匿名用户

您一次只能创建一个,您需要循环并发送每个请求。