开发
JS API

我们提供了丰富的JS-API让您可以快速的调用Retalk

初始化Retalk

const retalk = new Retalk({
    server: "https://your_domain"
})

新增评论

retalk.addComment({
    name: "评论发布者名称",
    email: "评论发布者邮箱",
    link: "评论发布者网站链接",
    body: "Markdown格式的评论正文"
})

获取所有评论

retalk.getAllComments()

获取指定页面的评论

retalk.getCommentsByPath({
    path: "页面的路径"
})

初始化服务端

retalk.init({
    name: "管理员昵称",
    email: "管理员邮箱",
    link: "管理员网站链接",
    apikey: "设置APIKEY"
})

获取后端版本

retalk.getServerVersion()
// 返回示例
"v0.1.0"

获取前端版本

retalk.getFrontVersion()
"v0.1.0"