PHP Twitter OAuth Retweet

I have implemented Twitter OAuth in my web application, currently the web application retrieves all tweets made using a specific tag.

I want the user to be able to recompose any of the tweets received.

Can someone point me in the right direction, point me to an example or documentation on how to rephrase via OAuth and Twitter.

+3
source share
2 answers

http://api.twitter.com/1/statuses/retweet/id.format

from http://apiwiki.twitter.com/Twitter-REST-API-Method%3A-statuses-retweet

+2
source

By providing this URL, your tweet id will use the twitter function for retweets.

http://twitter.com/intent/retweet?tweet_id=

+1

Source: https://habr.com/ru/post/1763243/


All Articles