我正在尝试添加论坛主题,然后将论坛条目添加到社区。 在IBM API文档之后,我将Atom条目发布到此URL:/ communities / service / atom / community / forum / topics?communityUuid =
我使用的Atom条目如下格式(来自API文档的示例):
<?xml version="1.0" encoding="UTF-8"?>
<entry
xmlns="http://www.w3.org/2005/Atom"
xmlns:app="http://www.w3.org/2007/app"
xmlns:snx="http://www.ibm.com/xmlns/prod/sn">
<category scheme="http://www.ibm.com/xmlns/prod/sn/type" term="forum-topic"/>
<title type="text">TEXT OF TOPIC</title>
</entry>
每次我得到200回答。 我在操场上试过,结果相同。
您知道我使用的网址是否正确吗?您知道Atom条目文档是否正确吗?
感谢。
答案 0 :(得分:0)
所以网址是正确的。
身体很可能不是。
<?xml version="1.0" encoding="UTF-8"?>
<entry xmlns:app="http://www.w3.org/2007/app" xmlns:snx="http://www.ibm.com/xmlns/prod/sn" xmlns:thr="http://purl.org/syndication/thread/1.0">
<title type="text">Test</title>
<category term="forum-topic" scheme="http://www.ibm.com/xmlns/prod/sn/type">
</category>
<content type="html">
<p dir="ltr">
Test
</p>
</content>
<snx:communityUuid xmlns:snx="http://www.ibm.com/xmlns/prod/sn">3a246a15-b4d6-44e1-a01d-1c3d89f1f9a4</snx:communityUuid>
</entry>
注意附加属性
<snx:communityUuid xmlns:snx="http://www.ibm.com/xmlns/prod/sn">3a246a15-b4d6-44e1-a01d-1c3d89f1f9a4</snx:communityUuid>
发布时,您需要引用社区ID。
答案 1 :(得分:0)
好的,能够在@paul的帮助下找到解决方案。
发布Atom文档所需的URL是: /论坛/原子/主题?communityUuid =
Atom文档应如下所示:
<?xml version="1.0" encoding="UTF-8"?>
<entry xmlns="http://www.w3.org/2005/Atom" xmlns:snx="http://www.ibm.com/xmlns/prod/sn">
<title type="text">Test</title>
<category term="forum-topic" scheme="http://www.ibm.com/xmlns/prod/sn/type">
</category>
<content type="text">
test
</content>
<snx:communityUuid xmlns:snx="http://www.ibm.com/xmlns/prod/sn">19aa4e90-9307-46f1-9b69-5a8965e8ed61</snx:communityUuid>
</entry>