hi Team,
When i replay tweets more then 140 character is not showing on Customer Page this show only view more . when i check in my account is showing properly.
Please help me
It is not clear what you are asking. Where do the replies not show more than 140 characters? What API endpoint are you using? Are you using the extended tweet_mode option?
sample code :
var tweetToReplyTo = Tweet.GetTweet(“Post ID”); var rplytweet = Tweet.PublishTweet(string.Format("@{0} " + “Message”, “screen_name”), new PublishTweetOptionalParameters() { InReplyToTweet = tweetToReplyTo });
It looks like you are using a third-party package to access the Twitter APIs.
If you aren’t seeing a full tweet, there may be certain queries you can pass through your request to extend tweets such as tweet_mode=extended. Just peeking at the repo, it looks like support for the tweet_mode was added at some point: https://github.com/linvi/tweetinvi/blob/e0c884e9126be07f94ae7b302526e58eb9397d34/Tweetinvi.Streams/TwitterStream.cs
tweet_mode=extended
You’ll be best off reaching out to the team that developed the third-party package to get more clarification on this.
Hamza
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.