POST/PUT/DELETEメソッドにて
リソースのデータ更新を行う際は
リクエストボディにXMLのデータを含めて送信をしてください。

例:スレッド作成時
POST /xml/thread/thread HTTP/1.1
X-WSSE: UsernameToken Username="test", PasswordDigest="test", Nonce="test", Created="2008-05-20T07:10:30Z"
Host: api.amebabbs.ameba.jp
Content-Length: 190
Cache-Control: no-cache


<?xml version="1.0"?>
<thread>
<category>1</category>
<showName>test</showName>
<title>test</title>
<showProfileFlg>1</showProfileFlg>
<description>test</description>
</thread>

例:レス投稿時
POST /xml/thread/res/OTo060dn7FEjW-pz583SAv/ HTTP/1.1
Host: dev.amebabbs.ameba.jp
Content-Length: 86
Cache-Control: no-cache


<?xml version="1.0"?>
<comment>
<text>test</text>
<user>test</user>
</comment>