Bhargav
Bhargav

Reputation: 586

Twitter re-tweet with comment using api version 1.1

I have tried to re-tweet without comment than it is working using php sdk like

$connection = new Twitter_TwitterOAuth($this->registry->config->twitter_key, $this->registry->config->twitter_secret, $postData['token'], $postData['secret']);
$connection->post('statuses/retweet/'.$postData['id']);

but for re-tweet with comment i did not found any help and also in twitter API I checked that there is no parameter of comment when re-tweet.

I am referring this API method.

https://api.twitter.com/1.1/statuses/retweet/:id.json

in this only two param id and trim user and no comment parameter is given with this API call.

Can any one help me on this for re-tweet with comment using API of twitter?

Thank you in advance.

Upvotes: 1

Views: 481

Answers (1)

Ilanus
Ilanus

Reputation: 6928

It looks like "retweets with comments" are just like normal tweets, with a permalink to another tweet at the end. So POST statuses/update with a link to a tweet should work just fine.

Upvotes: 1

Related Questions