Skip to content

ShiranuiNui/WinFormTwitterAPP

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 

Repository files navigation

WinFormTwitterAPP

You can use this library when you want to tweet other Application.This is Simple POSTMethod code.

How to use

Input your four APITokenKey and please write this code

using System.Twitter;

Tweet function

public void OnClickTweetButton(object sender, EventArgs e)
{
  var twitter = new TwitterAPI("your ConsumerKey", "your ConsumerKeySecret",
  "your AccessToken", "your AccessTokenSecret");

   var tweetValue = "HELLO"; //or Textbox.text and so on
   twitter.Tweet(tweetValue); //tweet value
}

other

I will make GETTimeLine and login system soon..

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%