From b3bf95bfddf557c204362553bf3b324e43575039 Mon Sep 17 00:00:00 2001 From: csisoap <33269526+csisoap@users.noreply.github.com> Date: Wed, 12 Jul 2023 04:17:38 +0700 Subject: [PATCH] Replace token for Twitter. (#3522) --- lib/TwitterClient.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/TwitterClient.php b/lib/TwitterClient.php index 605c27ff..18e8d02a 100644 --- a/lib/TwitterClient.php +++ b/lib/TwitterClient.php @@ -11,7 +11,7 @@ class TwitterClient public function __construct(CacheInterface $cache) { $this->cache = $cache; - $this->authorization = 'AAAAAAAAAAAAAAAAAAAAANRILgAAAAAAnNwIzUejRCOuH5E6I8xnZz4puTs%3D1Zv7ttfk8LF81IUq16cHjhLTvJu4FA33AGWWjCpTnA'; + $this->authorization = 'AAAAAAAAAAAAAAAAAAAAAGHtAgAAAAAA%2Bx7ILXNILCqkSGIzy6faIHZ9s3Q%3DQy97w6SIrzE7lQwPJEYQBsArEE2fC25caFwRBvAGi456G09vGR'; $this->data = $cache->loadData() ?? []; }