Simple OAuth library for Java        https://github.com/scribejava/scribejava


Dead Simple

Who said OAuth/OAuth2 was difficult? Configuring ScribeJava is so easy your grandma can do it! check it out:

OAuthService service = new ServiceBuilder()
                                  .apiKey(YOUR_API_KEY)
                                  .apiSecret(YOUR_API_SECRET)
                                  .build(LinkedInApi20.instance());

Pull it from Maven Central



    com.github.scribejava
    scribejava-apis
    2.5.3

And in case you need just core classes (that's it, without any external API (FB, VK, GitHub, Google etc) specific code), you could pull just 'core' artifact.


    com.github.scribejava
    scribejava-core
    2.5.3