x-twitter-scraper 0.5.3 → 0.5.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +19 -3
- data/lib/x_twitter_scraper/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 144567e343980fa937a4a6734b4043d786e09999cdfa78be87dee0eea30d4b34
|
|
4
|
+
data.tar.gz: 1d9f6a8f49774f1df76245c8dcbdc9b4d82aa65c89478acd73e35b0a9902dd61
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 44d43c252aefe648a72f2c93be6a44bf61b6b2c18654eca8d6171a0bc5c5cf912155f7335e7512ba517d47f4bcd6bbfcd85481c572f887378ee496307013cb72
|
|
7
|
+
data.tar.gz: f4ccc15a48677f29b0e453f2f46fe04a686fdb8bb70b78dfe46ca7d10f022c2b8327fb183074ed00354056f4b8e3dbbd404685c27d475f39f79fe06f92e4a095
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.4 (2026-07-23)
|
|
4
|
+
|
|
5
|
+
Full Changelog: [v0.5.3...v0.5.4](https://github.com/Xquik-dev/x-twitter-scraper-ruby/compare/v0.5.3...v0.5.4)
|
|
6
|
+
|
|
7
|
+
### Documentation
|
|
8
|
+
|
|
9
|
+
* map common X data tasks ([#15](https://github.com/Xquik-dev/x-twitter-scraper-ruby/issues/15)) ([754411a](https://github.com/Xquik-dev/x-twitter-scraper-ruby/commit/754411a6aa38dfff58a29957258d2639a2b261ed))
|
|
10
|
+
|
|
3
11
|
## 0.5.3 (2026-07-22)
|
|
4
12
|
|
|
5
13
|
Full Changelog: [v0.5.2...v0.5.3](https://github.com/Xquik-dev/x-twitter-scraper-ruby/compare/v0.5.2...v0.5.3)
|
data/README.md
CHANGED
|
@@ -1,11 +1,27 @@
|
|
|
1
|
-
#
|
|
1
|
+
# X (Twitter) Scraper Ruby SDK: Tweet Search, Timelines, Followers & Posting
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.bestpractices.dev/projects/13739)
|
|
4
|
+
|
|
5
|
+
Use Xquik's typed Ruby client for X data and confirmed actions.
|
|
4
6
|
|
|
5
7
|
## Documentation
|
|
6
8
|
|
|
7
9
|
Read the [Ruby SDK guide](https://docs.xquik.com/sdks/ruby), [API guide](https://docs.xquik.com/api-reference/overview), or [RubyDoc reference](https://gemdocs.org/gems/x-twitter-scraper).
|
|
8
10
|
|
|
11
|
+
## Common X Data Tasks
|
|
12
|
+
|
|
13
|
+
Use the linked Ruby reference for typed method names.
|
|
14
|
+
|
|
15
|
+
| Customer Question | REST Route | Workflow Note |
|
|
16
|
+
| --- | --- | --- |
|
|
17
|
+
| How do I search tweets? | `GET /x/tweets/search` | Use keyword or advanced operator queries. |
|
|
18
|
+
| How do I read a profile timeline? | `GET /x/users/{id}/tweets` | Paginate bounded results. |
|
|
19
|
+
| How do I scrape followers? | `GET /x/users/{id}/followers` | Use an extraction for complete datasets. |
|
|
20
|
+
| How do I scrape following accounts? | `GET /x/users/{id}/following` | Use an extraction for complete datasets. |
|
|
21
|
+
| How do I read my home timeline? | `GET /x/timeline` | Approve this private read. |
|
|
22
|
+
| How do I monitor an account? | `POST /monitors` | Deliver events through HMAC webhooks. |
|
|
23
|
+
| How do I post or reply? | `POST /x/tweets` | Confirm the account and payload. |
|
|
24
|
+
|
|
9
25
|
## Installation
|
|
10
26
|
|
|
11
27
|
Add the gem to your `Gemfile`:
|
|
@@ -13,7 +29,7 @@ Add the gem to your `Gemfile`:
|
|
|
13
29
|
<!-- x-release-please-start-version -->
|
|
14
30
|
|
|
15
31
|
```ruby
|
|
16
|
-
gem "x-twitter-scraper", "~> 0.5.
|
|
32
|
+
gem "x-twitter-scraper", "~> 0.5.4"
|
|
17
33
|
```
|
|
18
34
|
|
|
19
35
|
<!-- x-release-please-end -->
|