-
Notifications
You must be signed in to change notification settings - Fork 218
Tweets
linvi edited this page May 27, 2015
·
25 revisions
Tweets are 140 characters text messages that can contain various information entities like HashTags, Locations, Images, Videos, URLs.
Lets start by publishing a simple tweet...
var firstTweet = Tweet.PublishTweet("I love Tweetinvi!");
Now let's publish a reply to the first tweet.
var reply = Tweet.CreateTweet("Tweetinvi loves you back!");
// If the operation is a success, the reply object is updated
var success = firstTweet.PublishReply(reply);