4

我必须在我的 android 应用程序代码中实现 Captcha,但不知道如何去做。

请问有人可以帮我吗?

4

3 回答 3

4

看看SimpleCaptchaJCaptcha

于 2012-05-14T18:40:41.497 回答
3

无耻的自我推销,但我讨厌所有其他选择,特别是它们都是基于网络的。现在,我确信我的需要大量工作等,并且可能不如使用其他外部解决方案安全,但至少它易于使用并且有一些选择。

在这里 Git,并享受更改和提交的乐趣

于 2012-05-31T20:01:32.333 回答
2

现在谷歌为此提供了 SafetyNet reCAPTCHA 库。在此处
查找更多详细信息。

以下是实施 reCaptcha 的步骤:

  1. 添加 SafetyNet API 依赖项
dependencies {
    compile 'com.google.android.gms:play-services-safetynet:15.0.1'
}
  1. 使用 API(来自 google 文档的示例)

    public void onClick(View v) {
    SafetyNet.getClient(this).verifyWithRecaptcha(YOUR_API_SITE_KEY)
        .addOnSuccessListener((Executor) this,
            new OnSuccessListener<SafetyNetApi.RecaptchaTokenResponse>() {
                @Override
                public void onSuccess(SafetyNetApi.RecaptchaTokenResponse response) {
                    // Indicates communication with reCAPTCHA service was
                    // successful.
                    String userResponseToken = response.getTokenResult();
                    if (!userResponseToken.isEmpty()) {
                        // Validate the user response token using the
                        // reCAPTCHA siteverify API.
                    }
                }
        })
        .addOnFailureListener((Executor) this, new OnFailureListener() {
                @Override
                public void onFailure(@NonNull Exception e) {
                    if (e instanceof ApiException) {
                        // An error occurred when communicating with the
                        // reCAPTCHA service. Refer to the status code to
                        // handle the error appropriately.
                        ApiException apiException = (ApiException) e;
                        int statusCode = apiException.getStatusCode();
                        Log.d(TAG, "Error: " + CommonStatusCodes
                                .getStatusCodeString(statusCode));
                    } else {
                        // A different, unknown type of error occurred.
                        Log.d(TAG, "Error: " + e.getMessage());
                    }
                }
        });
    

    }

于 2018-08-15T02:45:28.313 回答