【发布时间】:2014-04-24 15:18:14
【问题描述】:
我正在尝试使用 IBM Connections 4.5 中的 REST 创建事件,我使用了 IBM Connections API 文档,但是当我发布请求时,我收到错误 500,并且没有返回错误消息。我传递的 Atom 文档是:
<?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">
<title type="text">ST0809</title>
<content type="html"><![CDATA[ Description ]]></content>
<category term="event" scheme="http://www.ibm.com/xmlns/prod/sn/type"></category>
<snx:recurrence scheme="http://www.ibm.com/xmlns/prod/sn" custom="yes">
<snx:period scheme="http://www.ibm.com/xmlns/prod/sn">
<snx:startDate scheme="http://www.ibm.com/xmlns/prod/sn">2014-06-23T08:00:00.000Z</snx:startDate>
<snx:endDate scheme="http://www.ibm.com/xmlns/prod/sn">2014-06-23T09:00:00.000Z</snx:endDate>
</snx:period>
</snx:recurrence>
</entry>
我发布到 URL“/communities/calendar/atom/calendar/event?calendarUuid=" 显然填写了 uuid。
有人有什么想法吗?
【问题讨论】:
标签: rest atom-feed connection