如何在Android上实现OAuth2授权

时间:2019-04-13 15:20:37

标签: android oauth-2.0

我需要在我的应用中添加OAuth2授权。我只有client-id,client-secret和username(email)。我需要获得令牌。您能给我一些建议吗?库还是示例代码?

1 个答案:

答案 0 :(得分:0)

您可以使用AppAuth进行OAuth2授权。

有关示例,请参见https://github.com/openid/AppAuth-Android


以下是AppAuth文档的简化版本。

概述

建议本地应用使用授权代码流。

此流程实际上由四个阶段组成:

  1. 指定授权服务配置。
  2. 通过浏览器进行授权,以获得授权代码。
  3. 交换授权码,以获得访问和刷新令牌。
  4. 使用访问令牌访问受保护的资源服务。

1。创建授权服务配置

首先,创建授权服务的配置,该配置将在第二阶段和第三阶段中使用。

AuthorizationServiceConfiguration mServiceConfiguration =
    new AuthorizationServiceConfiguration(
        Uri.parse("https://example.com/authorize"), // Authorization endpoint
        Uri.parse("https://example.com/token")); // Token endpoint

ClientAuthentication mClientAuthentication =
    new ClientSecretBasic("my-client-secret"); // Client secret

(不建议在本机应用中使用静态客户端机密。)

2。请求授权并获取授权码

要接收授权回调,请在清单文件中定义以下活动。 (您无需实施此活动。此活动将充当授权请求的代理。)

<activity
        android:name="net.openid.appauth.RedirectUriReceiverActivity"
        tools:node="replace">
    <intent-filter>
        <action android:name="android.intent.action.VIEW"/>
        <category android:name="android.intent.category.DEFAULT"/>
        <category android:name="android.intent.category.BROWSABLE"/>
        <data android:scheme="com.example"/> <!-- Redirect URI scheme -->
    </intent-filter>
</activity>

构建并执行授权请求。

private void authorize() {
    AuthorizationRequest authRequest = new AuthorizationRequest.Builder(
        mServiceConfiguration,
        "my-client-id", // Client ID
        ResponseTypeValues.CODE,
        Uri.parse("com.example://oauth-callback") // Redirect URI
    ).build();

    AuthorizationService service = new AuthorizationService(this);

    Intent intent = service.getAuthorizationRequestIntent(authRequest);
    startActivityForResult(intent, REQUEST_CODE_AUTH);
}

处理授权响应。

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
    if (requestCode != REQUEST_CODE_AUTH) {
        return;
    }

    AuthorizationResponse authResponse = AuthorizationResponse.fromIntent(intent);
    AuthorizationException authException = AuthorizationException.fromIntent(intent);

    mAuthState = new AuthState(authResponse, authException);

    // Handle authorization response error here

    retrieveTokens(authResponse);
}

3。交换授权码

private void retrieveTokens(AuthorizationResponse authResponse) {
    TokenRequest tokenRequest = response.createTokenExchangeRequest();

    AuthorizationService service = new AuthorizationService(this);

    service.performTokenRequest(request, mClientAuthentication,
            new AuthorizationService.TokenResponseCallback() {
        @Override
        public void onTokenRequestCompleted(TokenResponse tokenResponse,
                AuthorizationException tokenException) {
            mAuthState.update(tokenResponse, tokenException);

            // Handle token response error here

            persistAuthState(mAuthState);
        }
    });
}

成功完成令牌检索后,请坚持AuthState,以便您可以在下一个应用程序(重新)启动时重新使用它。

4。访问受保护的资源服务

使用performActionWithFreshTokens以全新的访问令牌执行API调用。 (它将自动确保令牌是新鲜的,并在需要时刷新它们。)

private void prepareApiCall() {
    AuthorizationService service = new AuthorizationService(this);

    mAuthState.performActionWithFreshTokens(service, mClientAuthentication,
            new AuthState.AuthStateAction() {
        @Override
        public void execute(String accessToken, String idToken,
                AuthorizationException authException) {
            // Handle token refresh error here

            executeApiCall(accessToken);
        }
    });
}

执行API调用。 (AsyncTask只是为了简单起见。它可能不是执行API调用的最佳解决方案。)

private void executeApiCall(String accessToken) {
    new AsyncTask<String, Void, String>() {
        @Override
        protected String doInBackground(String... params) {
            OkHttpClient client = new OkHttpClient();
            Request request = new Request.Builder()
                    .url("https://example.com/api/...") // API URL
                    .addHeader("Authorization",
                            String.format("Bearer %s", params[0]))
                    .build();

            try {
                Response response = client.newCall(request).execute();
                return response.body().string();
            } catch (Exception e) {
                // Handle API error here
            }
        }

        @Override
        protected void onPostExecute(String response) {
            ...
        }
    }.execute(accessToken);
}