Avbot Chat WebClient用来桥接网页和Telegram,让av社区的友人不用登录IRC安装任何客户端即可参与社区技术讨论。
网站地址:https://avplayer.github.io/avbot_webclient
- 完全采用Websocket协议
- 全程HTTPS TLS1.2加密
{
"cmd" : 1,
"data" : {
"id" : 123,
"timestamp" : "1503132689",
"msg" : "this is a message text",
"from" : "nickname",
"user" : {
"id" : 162385454,
"name" : "username"
}
}
}
{
"cmd" : 2,
"data" : {
"id" : 123,
"timestamp" : "392873947",
"file_path" : "/avbot/file/tg/f43f432gfdsyh",
"caption" : "this is a message text near the picture",
"from" : "nickname",
"user" : {
"id" : 162385454,
"name" : "username"
}
}
}
- img_type可为:image/png、image/jpeg等
- img_data为:base64 string from image file
{
"cmd" : 3,
"data" : {
"id" : 123,
"timestamp" : "392873947",
"file_path" : "avbot/file/tg/5g43g56h56"
"from" : "nickname",
"user" : {
"id" : 162385454,
"name" : "username"
}
}
}
- video_type可为:video/mp4、audio/mpeg3等
- video_data为:base64 string from audio/video file
{
"cmd" : 1,
"data" : {
"msg" : "this is a message text",
"from" : "nickname"
}
}
{
"cmd" : 2,
"data" : {
"img_type" : "image/png",
"img_data" : "iVBORw0KGgoAAAANSUhEUgAAAAUAAAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO9TXL0Y4OHwAAAABJRU5ErkJggg==",
"caption" : "this is a message text near the picture",
"from" : "nickname"
}
}