本文整理匯總了C#中TweetSharp.TwitterService.Retweet方法的典型用法代碼示例。如果您正苦於以下問題:C# TwitterService.Retweet方法的具體用法?C# TwitterService.Retweet怎麽用?C# TwitterService.Retweet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類TweetSharp.TwitterService
的用法示例。
在下文中一共展示了TwitterService.Retweet方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。
示例1: DoRetweets
public static void DoRetweets()
{
string CONSUMER_KEY = "R";
string CONSUMER_SECRET = "R";
string ACCESS_TOKEN = "R";
string ACCESS_SECRET = "R";
var service = new TwitterService(CONSUMER_KEY, CONSUMER_SECRET);
service.AuthenticateWith(ACCESS_TOKEN, ACCESS_SECRET);
//WoW
var currentTweets = service.ListTweetsOnUserTimeline(
new ListTweetsOnUserTimelineOptions()
{
Count = 5,
ExcludeReplies = false,
IncludeRts = false,
ScreenName = "@" + "blizzpostswow",
SinceId = null,
MaxId = null
}).Where(x => (DateTime.UtcNow - x.CreatedDate).TotalHours <= 6 && x.RetweetCount == 0);
foreach (var tweet in currentTweets)
{
if (tweet.InReplyToStatusId == null && !tweet.Text.EndsWith("~!"))
service.Retweet(new RetweetOptions { Id = tweet.Id });
Console.WriteLine("Retweet result: " + service.Response.StatusCode.ToString());
}
//D3
currentTweets = service.ListTweetsOnUserTimeline(
new ListTweetsOnUserTimelineOptions()
{
Count = 5,
ExcludeReplies = false,
IncludeRts = false,
ScreenName = "@" + "blizzpostsd3",
SinceId = null,
MaxId = null
}).Where(x => (DateTime.UtcNow - x.CreatedDate).TotalHours <= 6 && x.RetweetCount == 0);
foreach (var tweet in currentTweets)
{
if (tweet.InReplyToStatusId == null && !tweet.Text.EndsWith("~!"))
service.Retweet(new RetweetOptions { Id = tweet.Id });
Console.WriteLine("Retweet result: " + service.Response.StatusCode.ToString());
}
//Hearthstone
currentTweets = service.ListTweetsOnUserTimeline(
new ListTweetsOnUserTimelineOptions()
{
Count = 5,
ExcludeReplies = false,
IncludeRts = false,
ScreenName = "@" + "blizzpostshs",
SinceId = null,
MaxId = null
}).Where(x => (DateTime.UtcNow - x.CreatedDate).TotalHours <= 6 && x.RetweetCount == 0);
foreach (var tweet in currentTweets)
{
if (tweet.InReplyToStatusId == null && !tweet.Text.EndsWith("~!"))
service.Retweet(new RetweetOptions { Id = tweet.Id });
Console.WriteLine("Retweet result: " + service.Response.StatusCode.ToString());
}
//Heroes
currentTweets = service.ListTweetsOnUserTimeline(
new ListTweetsOnUserTimelineOptions()
{
Count = 5,
ExcludeReplies = false,
IncludeRts = false,
ScreenName = "@" + "blizzpostshots",
SinceId = null,
MaxId = null
}).Where(x => (DateTime.UtcNow - x.CreatedDate).TotalHours <= 6 && x.RetweetCount == 0);
foreach (var tweet in currentTweets)
{
if (tweet.InReplyToStatusId == null && !tweet.Text.EndsWith("~!"))
service.Retweet(new RetweetOptions { Id = tweet.Id });
Console.WriteLine("Retweet result: " + service.Response.StatusCode.ToString());
}
//SC2
currentTweets = service.ListTweetsOnUserTimeline(
new ListTweetsOnUserTimelineOptions()
{
Count = 5,
ExcludeReplies = false,
IncludeRts = false,
ScreenName = "@" + "blizzpostssc2",
SinceId = null,
MaxId = null
}).Where(x => (DateTime.UtcNow - x.CreatedDate).TotalHours <= 6 && x.RetweetCount == 0);
foreach (var tweet in currentTweets)
{
//.........這裏部分代碼省略.........