-
Notifications
You must be signed in to change notification settings - Fork 221
Tweets
linvi edited this page May 29, 2015
·
25 revisions
Tweets are 140 characters text messages that can contain various information entities like HashTags, Locations, Images, Videos, URLs.
PLEASE NOTE THAT TWEET PUBLICATION WILL BE IMPROVED IN TWEETINVI 0.9.9.0
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);