Merge branch 'develop-1.0.18' into fixes-updates

This commit is contained in:
Jacek W
2024-01-18 17:11:20 +01:00
committed by GitHub
33 changed files with 1333 additions and 19 deletions

View File

@@ -24,8 +24,7 @@ package io.github.jwdeveloper.tiktok;
import java.net.Proxy;
public class ProxyExample
{
public class ProxyExample {
public static void main(String[] args) throws Exception {
TikTokLive.newClient(SimpleExample.TIKTOK_HOSTNAME)
.configure(clientSettings -> {
@@ -47,6 +46,7 @@ public class ProxyExample
.onError((liveClient, event) ->
event.getException().printStackTrace())
.buildAndConnect();
System.in.read();
}
}