-
Notifications
You must be signed in to change notification settings - Fork 0
课堂社区(消息互发)Api
xuelang123 edited this page Apr 21, 2014
·
1 revision
##课堂社区##
是消息互发的一种实现,类似于bbs, 这个是你选了哪些课程,就有相关的课堂社区存在(老师/后台 已创建的情况下)
##个人社区的获取##
/api/course/community
Request :
method :get
Response :
[
{
"name": "java课堂", // 社区名称
"id": "40280982448b950801448ba040630033", // 社区id
"content": "content", // 最新一条的内容
"time": "2014-04-21 11:25:51.0", // 最新一条发布时间
"userName": "lisi" // 最新一条发布者名称
}
]
##获取一个社区的消息列表##
/api/course/community/info
Request :
method : get
id:String // 社区id
Response :
[
{
"id": "40280982448b950801448ba0406300fassca",
"content": "听说spring4.0开始支持websocket",
"time": "2014-04-20 23:03:52.0",
"userName": "wenzhang"
},
{
"id": "ef80fc0c4582509a0145825185e80000",
"content": null,
"time": "2014-04-21 11:25:51.0",
"userName": "lisi"
}
]
##发布一条消息##
/api/course/community/publish
Request :
method:get
communityId:String // 社区id
content: String // 发布的内容
Response :
{
"status":RESULT_CONTENT
}