通过 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>
如果我们一次做一个重定向,如果我们有多个重定向,那么它会失败,你如何批量重定向?