Skip to content

Releases: jwdeveloper/TikTokLiveJava

1.3.1-Release

26 Feb 15:17
407f51f

Choose a tag to compare

Merge pull request #59 from jwdeveloper/develop-1.4.0

MINOR update

1.3.0-Release

15 Feb 19:01
6b6e82c

Choose a tag to compare

1.2.1-Release

15 Feb 18:56
12c64e1

Choose a tag to compare

MINOR: Merge pull request #57 from jwdeveloper/develop-1.3.0

MINOR: Develop 1.3.0

1.2.0-Release

15 Feb 00:26
359a150

Choose a tag to compare

1.1.2-Release

15 Feb 00:18

Choose a tag to compare

Update version in pom.xml

1.1.1-Release

11 Feb 11:40
ffabf09

Choose a tag to compare

Merge pull request #53 from jwdeveloper/develop-1.1.1

Develop 1.1.1

1.1.0-Release

19 Jan 18:19

Choose a tag to compare

Fixed poms files

1.0.17-Release

14 Jan 19:57

Choose a tag to compare

Final Proxy Commit!

1.0.16-Release

05 Jan 16:26

Choose a tag to compare

- refactor of the Http client

Changes:

Http-client settings in configure method

```
    TikTokLive.newClient("X")
                .configure(liveClientSettings ->
                {
                   var httpSetting = liveClientSettings.getHttpSettings();
                    httpSetting.setTimeout(Duration.ofSeconds(12));
                });
```

`TikTokLive.requests()` Easy and quick way of making
http request to tiktok
```
    var giftsResponse =TikTokLive.request.fetchGiftsData();
 ```

 Removed:
     TikTokLive.isLiveOnline(String hostName);
     TikTokLive.isHostNameValidAsync(String hostName);

     instead you can use
     ```
     TikTokLive.requests().fetchLiveUserData("Mike").getUserStatus()
     ```

1.0.15-Release

05 Jan 16:21

Choose a tag to compare

Made User#attributes final as its only set once and moved each constr…