1
Fork 0
mirror of https://github.com/thegeneralist01/twitter-tid-deobf-fork synced 2026-01-11 15:40:28 +01:00

update readme

Signed-off-by: ふぁ <yuki@yuki0311.com>
This commit is contained in:
ふぁ 2024-12-15 22:06:45 +09:00
parent 1c403fc235
commit b5355e88c9
No known key found for this signature in database
GPG key ID: 83A8A5E74872A8AA

View file

@ -1,22 +1,29 @@
# twitter-tid-deobf-fork # twitter-tid-deobf-fork
Run twitter-tid-deobf This repository performs deobfuscation of the `X-Client-Transaction-Id` header used on Twitter.
It is automatically updated daily at 22:00 UTC.
```shell It is a fork of [https://github.com/obfio/twitter-tid-deobf](https://github.com/obfio/twitter-tid-deobf).
npm --prefix base install
npm --prefix base run run ## Usage
```
Update `source/a.js` Update `source/a.js`
```shell ```shell
JSON_URL="https://raw.githubusercontent.com/fa0311/TwitterInternalAPIDocument/refs/heads/master/docs/json/ScriptLoadJson.json" JSON_URL="https://raw.githubusercontent.com/fa0311/TwitterInternalAPIDocument/refs/heads/develop/docs/json/ScriptLoadJson.json"
curl -s $JSON_URL | jq -r '.["ondemand.s"]' | xargs curl -s -o response.html curl -s $JSON_URL | jq -r '.["ondemand.s"]' | xargs curl -s -o response.html
``` ```
Run twitter-tid-deobf-fork Run
```shell ```shell
npm install npm install
npm run run2 npm run run2
``` ```
Run base `obfio/twitter-tid-deobf`
```shell
npm --prefix base install
npm --prefix base run run
```