We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
The SDK needs a Token and url in order to make Github requests.
TokenProvider.setTokenProviderInstance(new TokenProviderInterface() { @Override public String getToken() { return "your user token"; } });
You can encrypt, save it anywhere, or get it from network request, but the responses of getToken() has to be plain text wit the token.
getToken()
##URL
UrlProvider.setUrlProviderInstance(new UrlProviderInterface() { @Override public String getUrl() { return "https://api.github.com"; } });
If you use Github Enterprise you should provide your own server api endpoint