From 5103708eb5a5f04d42f20b3878ed3483eed6ca58 Mon Sep 17 00:00:00 2001 From: Haeun Chin Date: Thu, 21 Nov 2024 05:32:06 +0000 Subject: [PATCH] Added TWITTER_COOKIE example on quickstart.md --- docs/docs/quickstart.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/docs/quickstart.md b/docs/docs/quickstart.md index b0fb34bdf1..45de1ec4e9 100644 --- a/docs/docs/quickstart.md +++ b/docs/docs/quickstart.md @@ -136,6 +136,16 @@ TWITTER_EMAIL= # Account email TWITTER_COOKIES= # Account cookies (auth_token and CT0) ``` +Example for TWITTER_COOKIES + +The TWITTER_COOKIES variable should be a JSON string containing the necessary cookies. You can find these cookies in your web browser's developer tools. Here is an example format: + +```bash +TWITTER_COOKIES='[{"name":"auth_token","value":"your token","domain":".twitter.com"}, + {"name":"ct0","value":"your ct0","domain":".twitter.com"}, + {"name":"guest_id","value":"your guest_id","domain":".twitter.com"}]' +``` + ### Telegram Bot 1. Create a bot