jublo / codebird-js

A Twitter library in JavaScript.
https://www.jublo.net/projects/codebird/js
GNU General Public License v3.0
383 stars 97 forks source link

Unretweet #177

Closed christinna9031 closed 3 years ago

christinna9031 commented 3 years ago

Everything is working great, thank you for this great library! I just have one question, would it be possible to add "POST statuses/unretweet/:id"? It seems to be missing in the list. https://developer.twitter.com/en/docs/twitter-api/v1/tweets/post-and-engage/api-reference/post-statuses-unretweet-id Thanks!

lifeboatpres commented 3 years ago

You can edit src/codebird.php and change 'statuses/retweet/:id', to

'statuses/retweet/:id',
'statuses/unretweet/:id', 
christinna9031 commented 3 years ago

Thank you!