你的浏览器禁用了JavaScript, 请开启后刷新浏览器获得更好的体验!
输入关键字进行搜索
搜索:
没有找到相关结果
lizg - ……
赞同来自: beyond
shep
环信技术支持中心
要回复问题请先登录或注册
3 个回复
lizg - ……
赞同来自: beyond
2.环信不是好友也可以聊天,聊天记录可以导出,但是导出的是全部的,你要保存到你本地,再去查询
shep
环信技术支持中心
* 聊天消息记录
*
* @param $ql 查询条件如:$ql
* = "select+*+where+from='" . $uid . "'+or+to='". $uid ."'+order+by+timestamp+desc&limit=" . $limit . $cursor;
* 默认为order by timestamp desc
* @param $cursor 分页参数
* 默认为空
* @param $limit 条数
* 默认20
*/
function chatRecord($ql = '', $cursor = '', $limit = 20) {
$ql = ! empty ( $ql ) ? "ql=" . $ql : "order+by+timestamp+desc";
$cursor = ! empty ( $cursor ) ? "&cursor=" . $cursor : '';
$url="https://a1.easemob.com/dihon/loveofgod/chatmessages?" . $ql . "&limit=" . $limit . $cursor;
$access_token = getToken ();
$header = $access_token;
$result = postCurl ( $url, '', $header, $type = "GET " );
return $result;
}
这是代码你可以看一下,cursor有值时作为一个参数放在时间戳参数后面,再次请求服务器获取就可以了。