具有OAuth 2资源所有者密码凭据的Java scribe客户端

时间:2013-11-09 17:28:44

标签: java android oauth oauth-2.0 scribe

我正在构建一个使用授权授权类型“资源所有者密码凭据”

的移动应用程序

使用“oauth2”gem在Ruby中测试代码并且工作正常

client = OAuth2::Client.new('the_client_id', 'the_client_secret', :site => "http://example.com")
access_token = client.password.get_token('user@example.com', 'sekret')
puts access_token.token

Java代码

OAuthService service = new ServiceBuilder()
        .provider(MyApi.class)
        .apiKey("the_client_id")
        .apiSecret("the_client_secret")
        .debug()
        .build();
// the next step should provide ('user@example.com', 'sekret')
// because I am using "Resource Owner Password Credentials"
// http://tools.ietf.org/html/draft-ietf-oauth-v2-31#page-53
Token requestToken = service.getRequestToken(); 

如何在Scribe(或其他与Android兼容的库)中提供用户名和密码?

现在我找不到使用Scribe扩展“DefaultApi20”的方法。

1 个答案:

答案 0 :(得分:3)

我现在明白这只是一个POST请求

curl -i http://localhost:3000/oauth/token \
  -F grant_type=password \
  -F client_id=the_client_id \
  -F client_secret=the_client_secret \
  -F username=user@example.com \
  -F password=sekret