HTTP クライアント経由で POST を使用し、作成したプライベート アプリを使用して、Shopify API 経由でストアにリダイレクトを追加するのに少し問題があります。
https://apikey:password@hostname/admin/redirects.xml
次のエラーを含む HTTP/1.1 400 Bad Request を取得しています。
<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 つのリダイレクトを行う場合、複数のリダイレクトがある場合は問題ありません。リダイレクトをバッチ処理するにはどうすればよいですか?