You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2022. It is now read-only.
According to the README, SignalServiceAccountManager takes a url in the form of a String. This value is also a String according to the Javadoc. The wiki gives us a url to use.
However, in reality SignalServiceAccountManager takes a SignalServiceConfiguration object which in turn takes three String arrays. SignalServiceUrl[], SignalCdnUrl[] and SignalContactDiscoveryUrl[].
What are the url:s for these services?
The configuration object also requires a BounceCastle keystore. Where can this be found?
README
private final String URL = "https://my.signal.server.com";
SignalServiceAccountManager accountManager = new SignalServiceAccountManager(URL, TRUST_STORE, USERNAME, PASSWORD, USER_AGENT);
Javadoc @param configuration The URL for the Signal Service.
According to the README, SignalServiceAccountManager takes a url in the form of a String. This value is also a String according to the Javadoc. The wiki gives us a url to use.
However, in reality SignalServiceAccountManager takes a SignalServiceConfiguration object which in turn takes three String arrays. SignalServiceUrl[], SignalCdnUrl[] and SignalContactDiscoveryUrl[].
What are the url:s for these services?
The configuration object also requires a BounceCastle keystore. Where can this be found?
The text was updated successfully, but these errors were encountered: