• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

scribejava: the simple OAuth Java lib!

原作者: [db:作者] 来自: 网络 收藏 邀请

开源软件名称:

scribejava

开源软件地址:

https://gitee.com/cng1985/scribejava

开源软件介绍:

Welcome to the home of ScribeJava, the simple OAuth Java lib!

Why use 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());

That single line (added newlines for readability) is the only thing you need to configure ScribeJava with LinkedIn's OAuth API for example.

Threadsafe

Hit ScribeJava as hard and with many threads as you like.

Async

You can use ning async http client out-of-box, just use ServiceBuilderAsync

Supports all major 1.0a and 2.0 OAuth APIs out-of-the-box

  • Google

  • Facebook

  • Yahoo

  • LinkedIn

  • Twitter

  • Foursquare

  • Evernote

  • Vimeo

  • Windows Live

  • Odnoklassniki

  • Mail.ru

  • LinkedIn2.0

  • Google2.0

  • GitHub

  • and many more! check the examples folder

Small and modular

ScribeJava's code is small (about 1k LOC) and simple to understand. No smart-ass or "clever" hacks here.You can use only 'core' or 'with apis' maven modules

Android-Ready

Works out of the box with android(TM) applications.

Stable & bulletproof

Good test coverage to keep you safe from harm.

When something bad actually happens, ScribeJava's meaningful error messages will tell you exactly what went wrong, when and where.

Pull it from Maven Central!

You can pull ScribeJava from the central maven repository, just add these to your pom.xml file:

<dependency>    <groupId>com.github.scribejava</groupId>    <artifactId>scribejava-apis</artifactId>    <version>2.5.3</version></dependency>

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.

<dependency>    <groupId>com.github.scribejava</groupId>    <artifactId>scribejava-core</artifactId>    <version>2.5.3</version></dependency>

Getting started in less than 2 minutes

Check the Getting Started page and start rocking! Please Read the FAQ before creating an issue :)

Also, remember to read the fantastic tutorial that @akoskm wrote to easily integrate a server side app with an API (twitter in this case).

Questions?

Feel free to drop us an email or create issue right here on github.com

Forks

If you have a useful fork that should be listed there please contact us

QQ登陆

    final String apiKey = "101303927";    final String apiSecret = "0c3ac6430d6e2f60dfb637101252417e ";    final OAuth20Service service = new ServiceBuilder().apiKey(apiKey).apiSecret(apiSecret)            .callback("http://www.yichisancun.com/qqlogin.htm").state("xxxx")            .scope("get_user_info,list_album,upload_pic,do_like").build(QQApi.instance());    System.out.println(service.getAuthorizationUrl())

微信登陆

    final String apiKey = "x";    final String apiSecret = "x ";    final OAuth20Service service = new ServiceBuilder().apiKey(apiKey).apiSecret(apiSecret)            .callback("url").state("xxxx").scope("snsapi_login")            .build(WeiXinApi.instance());    System.out.println(service.getAuthorizationUrl());

开源中国登陆

 final OAuth20Service    oschina = new ServiceBuilder().apiKey("CTJlkYcnBaZCsi4GGgUk").grantType("authorization_code")            .apiSecret("TlKrmPCKImAKEzk1ORZtdwooJKDIgXrF").callback("http://www.yichisancun.com/oschinalogin.htm")            .responseType("code").build(OschinaApi.instance());            System.out.println(service.getAuthorizationUrl());

=======

Welcome to the home of ScribeJava, the simple OAuth Java lib!

Why use 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());

That single line (added newlines for readability) is the only thing you need to configure ScribeJava with LinkedIn's OAuth API for example.

Threadsafe

Hit ScribeJava as hard and with many threads as you like.

Async

You can use ning async http client out-of-box, just use ServiceBuilderAsync

Supports all major 1.0a and 2.0 OAuth APIs out-of-the-box

Small and modular

ScribeJava's code is small (about 1k LOC) and simple to understand. No smart-ass or "clever" hacks here.You can use only 'core' or 'with apis' maven modules

Android-Ready

Works out of the box with android(TM) applications.

Stable & bulletproof

Good test coverage to keep you safe from harm.

When something bad actually happens, ScribeJava's meaningful error messages will tell you exactly what went wrong, when and where.

Pull it from Maven Central!

You can pull ScribeJava from the central maven repository, just add these to your pom.xml file:

<dependency>    <groupId>com.github.scribejava</groupId>    <artifactId>scribejava-apis</artifactId>    <version>2.7.3</version></dependency>

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.

<dependency>    <groupId>com.github.scribejava</groupId>    <artifactId>scribejava-core</artifactId>    <version>2.7.3</version></dependency>

Getting started in less than 2 minutes

Check the Getting Started page and start rocking! Please Read the FAQ before creating an issue :)

Also, remember to read the fantastic tutorial that @akoskm wrote to easily integrate a server side app with an API (twitter in this case).

Questions?

Feel free to drop us an email or create issue right here on github.com

Forks

If you have a useful fork that should be listed there please contact us

branch 'master' of https://github.com/scribejava/scribejava.git


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap