diff --git a/social_post_twitter.services.yml b/social_post_twitter.services.yml
index f8d9823..f20df95 100644
--- a/social_post_twitter.services.yml
+++ b/social_post_twitter.services.yml
@@ -5,6 +5,3 @@ services:
   twitter_user_entity.manager:
     class: '\Drupal\social_post_twitter\TwitterUserEntityManager'
     arguments: ['@entity_type.manager', '@current_user']
-  twitter_post.token_manager:
-    class: 'Drupal\social_post_twitter\TwitterPostTokenManager'
-    arguments: ['@token','@entity_type.manager', '@current_route_match', '@current_user', '@entity.query']
diff --git a/src/Plugin/RulesAction/Tweet.php b/src/Plugin/RulesAction/Tweet.php
index 5b7d8c2..9133650 100644
--- a/src/Plugin/RulesAction/Tweet.php
+++ b/src/Plugin/RulesAction/Tweet.php
@@ -8,7 +8,6 @@ use Drupal\Core\Session\AccountInterface;
 use Drupal\rules\Core\RulesActionBase;
 use Drupal\social_post_twitter\Plugin\Network\TwitterPost;
 use Drupal\social_post_twitter\Plugin\Network\TwitterPostInterface;
-use Drupal\social_post_twitter\TwitterPostTokenManager;
 use Symfony\Component\DependencyInjection\ContainerInterface;
 
 /**
@@ -50,13 +49,6 @@ class Tweet extends RulesActionBase implements ContainerFactoryPluginInterface {
   protected $currentUser;
 
   /**
-   * The Twitter post token manager.
-   *
-   * @var \Drupal\social_post_twitter\TwitterPostTokenManager
-   */
-  protected $tokenManager;
-
-  /**
    * {@inheritdoc}
    */
   public static function create(ContainerInterface $container, array $configuration, $plugin_id, $plugin_definition) {
@@ -89,23 +81,19 @@ class Tweet extends RulesActionBase implements ContainerFactoryPluginInterface {
    *   The entity type manager.
    * @param \Drupal\Core\Session\AccountInterface $current_user
    *   The current user.
-   * @param \Drupal\social_post_twitter\TwitterPostTokenManager $token_manager
-   *   The Twitter post token manager.
    */
   public function __construct(array $configuration,
                               $plugin_id,
                               $plugin_definition,
                               TwitterPostInterface $twitter_post,
                               EntityTypeManagerInterface $entity_manager,
-                              AccountInterface $current_user,
-                              TwitterPostTokenManager $token_manager) {
+                              AccountInterface $current_user) {
 
     parent::__construct($configuration, $plugin_id, $plugin_definition);
 
     $this->twitterPost = $twitter_post;
     $this->twitterEntity = $entity_manager->getStorage('social_post_twitter_user');
     $this->currentUser = $current_user;
-    $this->tokenManager = $token_manager;
   }
 
   /**
@@ -115,8 +103,6 @@ class Tweet extends RulesActionBase implements ContainerFactoryPluginInterface {
    *   The tweet text.
    */
   protected function doExecute($status) {
-    $status = $this->tokenManager->formatStatus($status);
-
     $accounts = $this->getTwitterAccountsByUserId($this->currentUser->id());
     /* @var \Drupal\social_post_twitter\Entity\TwitterUserInterface $account */
     foreach ($accounts as $account) {
