@OAuthService service = new ServiceBuilder() .provider(LinkedInApi.class) .apiKey(YOUR_API_KEY) .apiSecret(YOUR_API_SECRET) .build();
That single line (added newlines for readability) is the only thing you need to configure scribe with LinkedIn's OAuth API for example.
Hit Scribe as hard and with many threads as you like.
-
Google
-
Facebook
-
Yahoo
-
LinkedIn
-
Twitter
-
Foursquare
-
Evernote
-
Vimeo
-
Yammer
-
Windows Live
-
and many more! check the "examples folder":http://github.com/fernandezpablo85/scribe-java/tree/master/src/test/java/org/scribe/examples
Scribe's code is small (about 1k LOC) and simple to understand. No smart-ass or "clever" hacks here.
Works out of the box with android(TM) applications.
Good test coverage to keep you safe from harm.
When something bad actually happens, Scribe's meaningful error messages will tell you exactly what went wrong, when and where.
You can pull scribe from a maven repository, just add this to your pom.xml file:
<dependency> <groupId>org.scribe</groupId> <artifactId>scribe</artifactId> <version>1.2.3</version> </dependency>
Check the "Getting Started":http://wiki.github.com/fernandezpablo85/scribe-java/getting-started page and start rocking!