It's simple, fast and easy! Why not?
Check out the Examples page.
You can use BlackBird with Maven by using JitPack: `
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.Langsdorf</groupId>
<artifactId>BlackBird</artifactId>
<version>1.0</version>
</dependency>
Check out the releases page.
Feel free to create an issue.
1. Go to the Twitter Apps Page
BlackBird blackBird = new BlackBird(consumerKey, consumerSecret, accessToken, accessTokenSecret);
1. Go to the [Twitter Apps Page] (https://apps.twitter.com/)
URLBasedOAuth oauthURL = new URLBasedOAuth(consumerKey, consumerSecret);
String URL = oauthURL.getAuthorizationUrl(); // URL to the page that the user must go to grant the access.
String pin = ""; // Enter the PIN received after the user grants access.
BlackBird blackBird = oauthURL.authenticate(pin);