• Articles
  • advertising chart
    advertising chart
    Want to show up here too?Contact us.

    Resource Profile:

    这是一款全功能仿默往IM即时通讯仿telegram系统源码,具备原生APP双端+PC端+音视频通话等功能。该系统配置灵活,支持海量并发,稳定可靠,确保数据安全。快速部署仅需2小时,支持单聊、群聊、系统通知等通信功能,并可在App、PC、Web等多端快速接入。
    群功能:
    设置群二维码、群公告、昵称、头像、群共享文件等功能。
    支持消息免打扰、屏蔽群信息、禁言、举报、群管理等操作。
    群主可管理权转让、指定管理员、指定隐身人、一键复制新群等功能。
    群消息销毁:
    群主和管理员可撤回群内任何消息,确保消息安全。
    群聊天:
    支持文字、语音、收藏、照片、小视频、GIF动态图等多种消息形式。
    提供消息逐条转发、合并转发、合并分享和收藏等功能。
    好友聊天:
    支持文字、语音、音视频通话、照片、小视频、GIF动态图等消息形式。
    提供红包、转账、消息逐条转发、合并转发等功能。
    其他功能简述:
    添加朋友、扫一扫、收付款、附近的人、通讯录分组、阅后即焚、置顶聊天等功能。
    后台管理功能包括数据总览、系统配置、客户端配置、服务端配置、用户管理、角色管理、群组管理等。
    此外,系统还提供了朋友圈功能,支持图文、语音、视频的发布,以及点赞、评论、举报等操作。用户管理方面,可进行登录时间查看、封禁用户、更换头像、更换名称、设置密码等操作。会员登录支持注册登录和短信登录,账号设置包括修改密码、皮肤切换、字体设置、一键群发好友消息等功能。
    该系统功能强大,适用于多种场景,为用户提供了高效便捷的即时通讯体验。

    Photo Gallery:

    【运营版】仿默往im聊天软件,仿telegram即时通讯源码原生APP双端+pc端+音视频通话-效果图1

    【运营版】仿默往im聊天软件,仿telegram即时通讯源码原生APP双端+pc端+音视频通话-效果图2

    【运营版】仿默往im聊天软件,仿telegram即时通讯源码原生APP双端+pc端+音视频通话-效果图3

    Installation and usage instructions:

    网站以及脚本用到的环境Nginx1.22+Mysql5.7+PHP7.4+redis7.0+nodejs14.17.6+etcd+minio+ssdb+kafka+
    安装mini:
    终端执行 apt-get install rpm
    然后安装命令 rpm -ivh minio-20221008201100.0.0.x86_64.rpm
    启动服务nohup minio server /opt/lib/minio –console-address “:9001” 1>/dev/null 2>&1 &
    安装ssdb:
    进入目录make进行编译 cd ssdb-master && make 如果没有make 去安装,apt-get install make
    将指定安装目录 make install PREFIX=/opt/lib/ssdb
    执行进入ssdb目录 cd ../ssdb
    启动服务 ./ssdb-server -d ssdb.conf
    关闭服务 ./ssdb-server ssdb.conf -s stop
    重启服务 ./ssdb-server ssdb.conf -s restart
    安装kafka:
    宝塔上安装java1.8
    设置jdk环境变量 vi /etc/profile
    export JAVA_HOME=/www/server/java/jdk1.8.0_371
    export PATH=$JAVA_HOME/bin:$PATH
    export CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
    source /etc/profile
    编辑config/server.properties文件填写listeners=PLAINTEXT://127.0.0.1:9092
    进入目录 cd kafka_2.13-3.3.2
    启动zookeeper nohup ./bin/zookeeper-server-start.sh config/zookeeper.properties 1>/dev/null 2>&1 &
    关闭zookeeper./bin/zookeeper-server-stop.sh config/zookeeper.properties
    启动kafka nohup ./bin/kafka-server-start.sh config/server.properties 1>/dev/null 2>&1 &
    关闭kafka ./bin/kafka-server-stop.sh config/server.properties
    安装etcd:
    vi /etc/profile
    export ETCDCTL_API=3
    source /etc/profile
    cd etcd-v3.5.5-linux-amd64 && nohup ./etcd >./etcd.log 2>&1 &
    导入数据库:
    开启root远程访问 mysql -u root -p
    use mysql;
    GRANT ALL PRIVILEGES ON *.* TO ‘root’@’%’ IDENTIFIED BY ‘123456’;
    flush privileges;
    新建三个数据库并导入数据库脚本databus enterprise imweb
    IM脚本:
    修改数据库账号密码 configs/*/*.toml dsn =
    执行清理日志 sh clear_logs-清创日志
    执行启动服务 sh start-启动服务
    创建网站:
    api
    伪静态 location / { try_files $uri $uri/ /index.php$is_args$query_string; }
    网站目录运行目录 public
    配置 .env WEB_URL= JK_HOST= DB_DATABASE= DB_PASSWORD= DB_WEB_ADMIN_USERNAME= DB_WEB_ADMIN_PASSWORD=
    运行sh ./run.sh
    php禁用函数全部删除或者根据job.log提示删除
    设置跨域访问 add_header Access-Control-Allow-Origin *;
    admin
    安装编译依赖包 yarn install
    配置.env api接口地址 VUE_APP_API_BASE_URL= VUE_APP_PHOTO_URL=
    打包编译yarn run build
    网站目录运行目录dist
    设置伪静态 if (!-e $request_filename) { rewrite ^/(.*) /index.html last; break; }
    web
    配置.env telegram接口ID和HASH以及接口地址 REACT_APP_TELEGRAM_API_ID= REACT_APP_TELEGRAM_API_HASH= REACT_APP_HOST_A=
    安装编译依赖 npm install
    拷贝文件 cp node_modules/tdweb/dist/* public/
    修改src/Constants.js127行改为上一步拷贝到public内的wasm文件名 WASM_FILE_NAME =
    打包编译 npm run build
    网站目录运行目录 build

    advertising chart
    advertising chart
    Want to show up here too?Contact us.
    Frequently Asked Questions FAQ
    Can free downloads or VIP member-only resources be commercialized directly?
    The resources on this site are collected and organized through the network, for personal research and study purposes only. The copyright belongs to the legal owner of the software and program code, users should verify the copyright and legality of the resources, prohibited for commercial use, illegal activities or any violation of national laws and regulations.
    Disclaimer of liability for program or code bugs, compatibility issues or functional defects, etc.
    As the resources on this site are collected and organized through the network, not the site's original, it can not fully guarantee its functionality or code compatibility. Users need to verify whether the resources meet the needs of their own, due to the following circumstances lead to losses, this site does not assume any responsibility:
    Programs, source code and other computer software resources may contain code vulnerabilities (bugs), compatibility issues or functional defects left by the developer. This site does not provide free repair services for such technical defects, users need to bear the risk of debugging, modification or abandonment of the use.
    © 2025 by - SourceHub & Www.ZYYdd.Com. All rights reserved 蜀ICP备2025145155号-1