issue , we are trying to increase the twitter trim limit from 140 to 215 but no matter what the length is not increased than 140. its not gettings increased.. then got a similar issue in social_feed fetcher https://www.drupal.org/project/social_feed_fetcher issue: https://www.drupal.org/project/social_feed_fetcher/issues/3007029 that twitter has increased its limit ..
is it increased in socialfeed already ? or needs to be done?

Comments

shubhangi1995 created an issue. See original summary.

shubhangi1995’s picture

Issue summary: View changes
devkinetic’s picture

I just ran into this as well.You must patch to add support for tweet_mode = extended

/src/Services/TwitterPostCollector.php

public function getPosts($count) {
    return $this->twitter->get('statuses/user_timeline', ['count' => $count, 'tweet_mode' => 'extended']);
  }

template_preprocess_socialfeed_twitter_post()

$post->text = $post->full_text;

This will get it at least working. I eventually went back to using the embed code method, as I wanted the image to display below without completely custom coding the whole thing.

  • Hemangi Gokhale committed 9f72a2c on 8.x-1.x
    Issue #3045646, #3057539, #3062652, #3063954, #3072131, #3072809 by...
hemangi.gokhale’s picture

Status: Active » Fixed

The issue is fixed now, kindly download the latest version. Thanks for your contribution!

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.