[HOWTO] 🤖 Use The reCaptcha Component In Kodular

:computer: Introduction

This is my first guide in this community, hope you guys will like it. :slight_smile:

I didn’t seem to find a guide in this community (nor on the web) about this component, so I decided to share it here.

Google reCaptcha is a fairly new component in Kodular added just recently in the Fenix update. It is a useful component that prevents malicious traffic in your apps. Created as a service by Google, it helps you identify whether the user is a human or a bot by requesting the user to perform some simple operations, such as selecting images.

The whole process is pretty simple, it was free, and not really complicated. You could do this in probably like 15 minutes.

:keyboard: Step 1. Setting Up Your Project

  1. In your Kodular project, among all of the list of categories, navigate to the image category. In the category, drag out a “Google reCaptcha” component and place it into the Viewer.

  2. As we can see, the component has only 1 property, which is the Site Key. Don’t worry about it (for now).

image

  1. On the right-top corner of your project, you will see a tiny gearimage icon, which is the Settings part of your project. Click on it. A dialog will then appear.

  1. In the list of the dialog, click on “Publishing” and you will find a field for you to fill in the package name.

image

  1. Set a package name for your app if you haven’t, and write that down on a piece of paper (or you can remember it for now).

image

  1. Good. Now, go to the official reCaptcha website on a new tab in your computer, which is here.

reCaptcha was mostly used to verify users on websites. But fear not, it’s almost the same as in apps.

  • Fill in your app name in the “Label” field. A label, according to Google, “makes it easy for you to identify it in the future”.

image

  • In the “reCaptcha type”, select “reCAPTCHA V2”, then “reCAPTCHA Android”.

image

  • In the “Packages” field, enter the package name for your app.

image

  • Accept the reCAPTCHA Terms of Service.

image

  • Check if everything is correct, then click image. Good!
  1. After that, you will be redirected to a screen where it shows your “site key” and “secret key”. They are important, do not close the tab yet. For now, head back to Kodular.

image

:keyboard: Step 2. Programming

  1. In the Blocks section of Kodular, create two variables that identify the site key and the secret key of the reCAPTCHA of your app.

image

  1. Go back to the Designer and add two more components:
  • Add a button from User Interface so that the user can verify if they are a robot or a human. It should say image.

  • Add a snackbar from User Interface so that the user knows whether the verification is successful or not.

  • Add a Google reCaptcha component from the Google category if you haven’t. Paste the site key that we have previously got in the Site Key property.

image

  1. In the blocks, add these.

  • When the verification button is clicked, we open a prompt that allows the user to select images to verify if they are humans or not. We use the PromptReCaptcha method here.

  • If they successfully finished the prompt and the PromptSucceded event is invoked, we need Google to validate the user. This is where the secret key comes in handy. We call the Validate method.

  • If they failed to finish the prompt, that means an error has occurred, and the PromptErrored event will be fired. We will stop here to tell the user that an error has occurred, and that they should try again.

  • When Google has validated the response, they will tell us whether it is successful or not. The success parameter of the ValidateResponse event will tell us that.

A small note

This whole program will only work in the compiled app (APK), since the package name of the companion is different from the package name you registered.

:movie_camera: Demo video

:inbox_tray: Downloads

APK: (using my keys) reCaptcha.apk (5.9 MB)

AIA: (remember to add your keys)
reCaptcha.aia (2.3 KB)

Thanks a lot!

9 Likes

Nice guide.

1 Like

Excellent.

1 Like

Very nice

1 Like

Congratulations on creating such a lovely guide! I do have a question regarding point 6. When selecting “reCAPTCHA V2,” I noticed that the option for “reCaptcha Android2” is unavailable in my case. Do you happen to know why this might be?

image

Same here. Seems that Google has deliberately removed the option.

1 Like