Click here to Skip to main content
15,892,298 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I am posting image with text on twitter using tweetshare api but unable to make these info with hyperlink so that user can see full info at mywebsite
here is my code..

XML
Bitmap img = new Bitmap(Server.MapPath("~/img/test.jpg"));

MemoryStream ms = new MemoryStream();
               img.Save(ms, System.Drawing.Imaging.ImageFormat.Jpeg);
               ms.Seek(0, SeekOrigin.Begin);
               Dictionary<string, Stream> images = new Dictionary<string, Stream> { { "mypicture", ms } };

               var result = service.SendTweetWithMedia(new SendTweetWithMediaOptions { Status = "this is my second tweet", Images = images });

can any one help me please..
Posted
Updated 22-Oct-15 2:46am
v3

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900