本文介绍了运行自定义TextSecure(信号)服务器的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我试图启动我的自定义TextSecure(Signal)服务器。我想将它用于Signal的所有功能(包括SMS和电话)。我相信我也需要redphone服务器来运行电话。我发现只有TextSecure服务器的github回购站只有 https://github.com/WhisperSystems/TextSecure-Server 但没有回购站为redphone服务器。 我认为我也需要运行这个服务器 https://github.com / WhisperSystems / PushServer 正确操作信号。 我尝试从github下载整个TextSecure服务器,并将它作为maven存储库添加到intelijidea,但它不允许我运行它并因此编译它。 任何有经验的运行一个cusotm TextSecure服务器的人?我需要一个小指南,因为我总是被困在这。 感谢您前进 解决方案您可以运行自己的TextSecure服务器,但首先您需要在Twilio,AWS S3,Google Developer和Apple Developer中创建帐户。 Twilio - 用于短信广播(用于在TextServer中注册)。 AWS - 用于TextSecure中的文档 Google开发者 - 用于推送通知。 Apple Developer - 用于推送通知(我没有注册这个,因为我没有黑客推送服务器)。 之后您需要安装:JDK和加密扩展,Maven,Postgresql,Redis。 使用Maven安装:Dropwizard-simpleauth,WebSocket-Resources。使用Maven编译PushServer并使用您的设置启动它(redis,auth,gcm ,apn)。使用Maven编译带有-DskipTests键的TextServer。 之后,您可以使用自己的TextServer,但不使用RedPhone。 RedPhone回购从github被删除。 希望这可以帮到你。 I am trying to start my custom TextSecure (Signal) server. I want to use it for all functions that Signal has (both SMS and telephony). I believe that I also need redphone server to run telephony. I've found github repos for TextSecure server only https://github.com/WhisperSystems/TextSecure-Server but no repos for redphone server.I think that I also need to run this server https://github.com/WhisperSystems/PushServer to properly operate Signal.I have tried downloading whole TextSecure server from github and adding it to intelijidea as maven repository but it doesnt allow me to run it and therefore to compile it.Anyone with experience of running a cusotm TextSecure server? I need a little guide because I am totaly stuck at this.Thanks in forward 解决方案 You can run your own TextSecure server, but first of all you need to create accounts at Twilio, AWS S3, Google Developer and Apple Developer.Twilio - for sms broadcasting(for registration in TextServer).AWS - for documents in TextSecure.Google developer - for push notifications.Apple Developer - for push notifications(i didn't reg this one because i did hack Push server).After thay you need to install: JDK and Cryptography extension, Maven, Postgresql, Redis.With Maven install: Dropwizard-simpleauth, WebSocket-Resources.With Maven compile PushServer and start it with your settings (redis, auth, gcm, apn).With Maven compile TextServer with -DskipTests key.After that you can use your own TextServer but without RedPhone. The RedPhone repo was deleted from github.Hope this helps you. 这篇关于运行自定义TextSecure(信号)服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-22 15:09