本文整理汇总了C#中LinqToTwitter.TwitterContext.TweetWithMediaAsync方法的典型用法代码示例。如果您正苦于以下问题:C# TwitterContext.TweetWithMediaAsync方法的具体用法?C# TwitterContext.TweetWithMediaAsync怎么用?C# TwitterContext.TweetWithMediaAsync使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类LinqToTwitter.TwitterContext
的用法示例。
在下文中一共展示了TwitterContext.TweetWithMediaAsync方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: PosterTwitterFromMVC
private static async void PosterTwitterFromMVC(Profile item)
{
IAuthorizer auth = new PinAuthorizer()
{
CredentialStore = new InMemoryCredentialStore
{
ConsumerKey = ConfigurationManager.AppSettings["ConsumerKey"].ToString(),// "0vbuhbtd8Zz7M121MtxtrA",
ConsumerSecret = ConfigurationManager.AppSettings["ConsumerSecret"].ToString(),// "5aj5te5ygcpPCBOMrwvGcjI8GAoAfAZFMlpLhyt2U"
OAuthToken = item.AccessToken,// "164334839-o5Dq8UKqZCLqooAHBOeuGDKgcx9ExTfO2FMvMxti",
OAuthTokenSecret = item.TokenSecret // "9vy702RGpq4sGPJEGAuQy0tsVOIsN3gu53MImpyPizI1f"
}
};
var ctx = new TwitterContext(auth);
//await ctx.TweetAsync("Testing from Application. MV Tweet!");
var webClient = new WebClient();
byte[] imageBytes = webClient.DownloadData(filename);
await ctx.TweetWithMediaAsync("Test", false, imageBytes);
Log.WriteLog("Twitter Post Done");
}