router.get('/createConv',function(req,res){
request.post({
url : 'https://api.leancloud.cn/1.1/classes/_Conversation',
headers : {
"X-LC-Id" : 'appId',
"X-LC-Key" : 'appKey',
"Content-Type" : 'application/json'
},
form : {
"name" : '聊天室名称',
"tr" : true
}
},
function(err,httpResponse,body){
console.log(body);
res.json(
JSON.parse(body)
);
});
});
我用nodejs搭建了后台服务器后使用以上方法创建聊天室,当然我只做一下测试看看。
然后在前端试了一下,代码如下
$.ajax({
url : '/createConv',
success : function(m) {
console.log(m);
}
})
//返回内容
Object {
ttl: 600,
push_router_server: "router-q0-push.leancloud.cn",
api_server: "e1-api.leancloud.cn"
}
但是到我的移动开发工具那里并没有看到创建成功后应该有的 conversation 记录