Skip to content

Releases: jwdeveloper/TikTokLiveJava

1.2.1-Release

15 Feb 18:56
12c64e1
Compare
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
Compare
Choose a tag to compare

1.1.2-Release

15 Feb 00:18
Compare
Choose a tag to compare
Update version in pom.xml

1.1.1-Release

11 Feb 11:40
ffabf09
Compare
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
Compare
Choose a tag to compare
Fixed poms files

1.0.17-Release

14 Jan 19:57
Compare
Choose a tag to compare
Final Proxy Commit!

1.0.16-Release

05 Jan 16:26
Compare
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
Compare
Choose a tag to compare
Made User#attributes final as its only set once and moved each constr…

1.0.14-Release

22 Dec 21:11
3231924
Compare
Choose a tag to compare
Merge pull request #40 from kohlerpop1/kohlerpop1-fixes-updates

Optimized a few methods when calling and using the Api!

1.0.13-Release

20 Dec 19:27
Compare
Choose a tag to compare