Closed darkmasta closed 1 month ago
I figured out how to do it...
This is currently not supported
But you may be able to do it by using extraParam
and specifying attachment_url
.
This solved my problem. I am able to quote a tweet this way.
const tweetUrl = `https://twitter.com/elonmusk/status/1748595664131363231`;
const status = `HELLO QUOTE TWEET ${tweetUrl}`;
const response = await client.getPostApi().postCreateTweet({
tweetText: status,
mediaIds: [],
})
This solved my problem. I am able to quote a tweet this way.
The Twitter API v2 implemented quote RT in the same way, but the current GraphQL client seems to implement it differently. I don't know why the v2 way of writing works fine for graphQL endpoints.
The Twitter API v2 implemented quote RT in the same way, but the current GraphQL client seems to implement it differently. I don't know why the v2 way of writing works fine for graphQL endpoints.
I am not sure but they extract info from tweet text and update the tweet with that info. You can post an image url from twitter and it becomes tweet media as well. There is a tweet text processing going on.
How can we quote a tweet instead of retweeting? It would be nice if you added this feature too. 🙏🙏