通過HTTP客戶端使用POST,我們在使用我們創建的私人應用程序通過Shopify API向商店添加一些重定向時遇到了一些問題。Shopify批量API重定向
https://apikey:[email protected]/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>
如果我們這樣做一次重定向,如果我們有多個重定向,那麼它會失敗,你如何批量重定向?
是否有任何錯誤返回?您是否將內容類型設置爲XML? –
錯過了內容類型現在它正在爲單個實例工作....如果我嘗試添加多個1重定向,那麼我得到一個錯誤的請求錯誤文檔末尾的額外內容 –
user1643897