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

Overview

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

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