Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.10.1"
".": "0.10.2"
}
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 0.10.2 (2026-08-20)

Full Changelog: [v0.10.1...v0.10.2](https://github.com/Xquik-dev/x-twitter-scraper-java/compare/v0.10.1...v0.10.2)

### Documentation

* refine public Java SDK text ([#54](https://github.com/Xquik-dev/x-twitter-scraper-java/issues/54)) ([84135cf](https://github.com/Xquik-dev/x-twitter-scraper-java/commit/84135cffafb041380a56c23cfba830d8b9d504fd))

## 0.10.1 (2026-08-18)

Full Changelog: [v0.10.0...v0.10.1](https://github.com/Xquik-dev/x-twitter-scraper-java/compare/v0.10.0...v0.10.1)
Expand Down
23 changes: 7 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,15 @@
[![OpenSSF Best Practices](https://www.bestpractices.dev/projects/13735/badge)](https://www.bestpractices.dev/projects/13735)

Use the Xquik Java SDK for Twitter search, timelines, profiles & followers.

Manage media, webhooks & X automation with typed Java methods.

It provides a Twitter API alternative through documented Xquik REST routes.

[API reference](https://docs.xquik.com/api-reference/overview) 路
[Authentication](https://xquik.com/auth.md) 路
[Javadocs](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java)
[API Reference](https://docs.xquik.com/api-reference/overview) | [Authentication](https://xquik.com/auth.md) | [Javadocs](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java)

<!-- x-release-please-start-version -->

[![Maven Central](https://img.shields.io/maven-central/v/com.xquik.api/x-twitter-scraper-java)](https://central.sonatype.com/artifact/com.xquik.api/x-twitter-scraper-java/0.10.1)
[![Javadocs](https://javadoc.io/badge2/com.xquik.api/x-twitter-scraper-java/0.10.1/javadoc.svg)](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java/0.10.1)
[![Maven Central](https://img.shields.io/maven-central/v/com.xquik.api/x-twitter-scraper-java)](https://central.sonatype.com/artifact/com.xquik.api/x-twitter-scraper-java/0.10.2)
[![Javadocs](https://javadoc.io/badge2/com.xquik.api/x-twitter-scraper-java/0.10.2/javadoc.svg)](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java/0.10.2)

<!-- x-release-please-end -->

Expand Down Expand Up @@ -52,16 +48,14 @@ Map each task to its REST route and Java service.
| Send media or update a profile | `POST /x/media`, `PATCH /x/profile` | `client.x().media()`, `client.x().profile()` |
| Manage connected X accounts | `GET /x/accounts`, `POST /x/accounts` | `client.x().accounts()` |

Use [Javadocs](https://javadoc.io/doc/com.xquik.api/x-twitter-scraper-java) for methods and the [API reference](https://docs.xquik.com/api-reference/overview) for contracts.

## Install

<!-- x-release-please-start-version -->

Gradle:

```kotlin
implementation("com.xquik.api:x-twitter-scraper-java:0.10.1")
implementation("com.xquik.api:x-twitter-scraper-java:0.10.2")
```

Maven:
Expand All @@ -70,17 +64,15 @@ Maven:
<dependency>
<groupId>com.xquik.api</groupId>
<artifactId>x-twitter-scraper-java</artifactId>
<version>0.10.1</version>
<version>0.10.2</version>
</dependency>
```

<!-- x-release-please-end -->

## Verify Maven Signatures

Every Maven Central file has a detached OpenPGP signature.

Set `VERSION` to the release version. Then verify the main artifact:
Every Maven Central file has a detached OpenPGP signature. Set `VERSION`, then verify the artifact:

```sh
version=VERSION
Expand Down Expand Up @@ -173,8 +165,7 @@ XTwitterScraperClient client = XTwitterScraperOkHttpClient.builder()
.build();
```

Xquik may still return a successful HTTP response with a structured API error.
Handle the documented error code from the response body.
Xquik may return a successful HTTP response with a structured API error. Handle its documented code.

## Read Raw Responses

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ licenseReport {

allprojects {
group = "com.xquik.api"
version = "0.10.1" // x-release-please-version
version = "0.10.2" // x-release-please-version

dependencyLocking {
lockAllConfigurations()
Expand Down