Skip to content
linvi edited this page May 27, 2015 · 25 revisions

Overview

Tweets are 140 characters text messages that can contain various information entities like HashTags, Locations, Images, Videos, URLs.

Let's code

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);
Clone this wiki locally