开发者

how to get ReTweet of Twitter?

开发者 https://www.devze.com 2023-02-09 06:15 出处:网络
i am using string TWITTER开发者_高级运维FEEDURL = \"http://twitter.com/statuses/user_timeline/xxx.xml?count=4\"; to get Tweets.

i am using string TWITTER开发者_高级运维FEEDURL = "http://twitter.com/statuses/user_timeline/xxx.xml?count=4"; to get Tweets. user_timeline = Returns the 20 most recent statuses posted by the authenticating user.

i want to get my ReTweets too. what i should use for that?? do i need be authenticated for that?


Newtwitter has an API method to get retweets by a user. You would perform a GET request to https://api.twitter.com/1/statuses/retweeted_by_user.xml?screen_name=xyz

You should also update your existing request to use the correct URL and API version as specified in the documentation.

0

精彩评论

暂无评论...
验证码 换一张
取 消