Create reCAPTCHA keys for mobile applications

This page explains how to create reCAPTCHA keys (also known as keys) to verify user interactions on your mobile applications.

reCAPTCHA keys represent how reCAPTCHA Enterprise is configured for a mobile application (app).

Before you begin

Create a reCAPTCHA key

You can create only score-based keys for mobile applications.

We recommend the following when creating reCAPTCHA keys for mobile applications:

  • Create one reCAPTCHA key for each mobile application.
  • For Android, create separate keys for the following scenarios:

    • Android package is only available on Google Play Store.
    • Android package is only available on non-Google Play Store app stores.
  • Create separate reCAPTCHA keys for staging and production environments. Otherwise, you risk polluting reCAPTCHA risk analysis with data from your test environment.

The simplest way to create a reCAPTCHA key is through the Google Cloud console. Alternatively, you can use the reCAPTCHA Enterprise API or the Google Cloud CLI.

Console

  1. In the Google Cloud console, go to the reCAPTCHA Enterprise page.

    Go to reCAPTCHA Enterprise

  2. Verify that the name of your project appears in the resource selector at the top of the page.

    If you don't see the name of your project, click the resource selector, then select your project.

  3. Click Create key.

  4. In the Display name field, enter a display name for the key.
  5. Depending on the type of reCAPTCHA key you want to create for your mobile application, perform the appropriate action:
  6. Create reCAPTCHA keys for iOS applications

    We recommend creating one reCAPTCHA key per iOS application.

    1. From the Choose platform type menu, select iOS app.
      1. In the iOS bundle ID list section, click Add iOS bundle ID.
      2. In the Bundle ID field, enter the name of your iOS bundle ID.

      3. Optional: To add an additional bundle ID, click Add iOS bundle ID and enter the name of your iOS bundle ID in the Bundle ID field.
      4. Optional: Provide Apple Developer settings.

        We recommend providing this data because it allows reCAPTCHA Enterprise to provide more accurate risk scores for your traffic.

        Enter the following information:

        • Private key (.p8): This is generated in the Apple Developer Center under Certificates, Identifiers & Profiles.
        • Key identifier: The Apple developer key identifier (10-character string).
        • Team ID: The Apple team ID (10-character string) owning the provisioning profile that is used to build your application.
      5. Expand Bundle ID verification and key type.
        1. To protect the reCAPTCHA key for your bundle IDs, ensure that the Disable bundle ID verification toggle is turned off.
        2. For your non-production environment, if you want to specify a score that you want the key to return when any assessments are created for it, do the following:

          1. Click the This is a testing key toggle.
          2. In the Score box, specify a score between 0 to 1.0.
      6. Click Create key.
      7. The newly created key is listed on the reCAPTCHA keys page.

    Create reCAPTCHA keys for Android applications

    1. From the Choose platform type menu, select Android app.
    2. In the Android package list section, click Add Android package.
    3. In the Android package field, enter the name of your Android package.

    4. Optional: To add an additional package, click Add Android package and enter the name of another Android package in the Android package field.
    5. Expand Package name verification, app distribution, and testing keys.
      1. To enforce that reCAPTCHA key is only used within your app, turn off the Disable package name verification toggle.
      2. If you want to create a key for an application that is available on other app stores in addition to the Google Play Store, turn on Support applications distributed outside of the Google Play Store.
      3. For your non-production environment, if you want to specify a score that you want the key to return when any assessments are created for it, do the following:

        1. Click the This is a testing key toggle.
        2. In the Score box, specify a score between 0 to 1.0.
    6. Click Create key.
    7. The newly created key is listed on the reCAPTCHA keys page.

gcloud (iOS)

To create reCAPTCHA keys, use the gcloud recaptcha keys create command.

Before using any of the command data below, make the following replacements:

  • DISPLAY_NAME: Name for the key. Typically a site name.
  • BUNDLE_IDs: iOS bundle ids of apps allowed to use the key. Specify multiple bundle IDs as a comma-separated list.

Execute the gcloud recaptcha keys create command:

Linux, macOS, or Cloud Shell


gcloud recaptcha keys create \
--display-name=DISPLAY_NAME  \
--ios --bundle-ids=BUNDLE_IDs

Windows (PowerShell)


gcloud recaptcha keys create `
--display-name=DISPLAY_NAME  `
--ios --bundle-ids=BUNDLE_IDs

Windows (cmd.exe)


gcloud recaptcha keys create ^
--display-name=DISPLAY_NAME  ^
--ios --bundle-ids=BUNDLE_IDs

The response contains the newly created reCAPTCHA key.

gcloud (Android)

To create reCAPTCHA keys, use the gcloud recaptcha keys create command.

Before using any of the command data below, make the following replacements:

  • DISPLAY_NAME: Name for the key. Typically a site name.
  • PACKAGE_NAMES: Android package names of apps allowed to use the key. Specify multiple package names as a comma-separated list.

Execute the gcloud recaptcha keys create command:

Linux, macOS, or Cloud Shell


gcloud recaptcha keys create \
--display-name=DISPLAY_NAME  \
--android --package-names=PACKAGE_NAMES

Windows (PowerShell)


gcloud recaptcha keys create `
--display-name=DISPLAY_NAME  `
--android --package-names=PACKAGE_NAMES

Windows (cmd.exe)


gcloud recaptcha keys create ^
--display-name=DISPLAY_NAME  ^
--android --package-names=PACKAGE_NAMES

The response contains the newly created reCAPTCHA key.

REST (iOS)

Before using any of the request data, make the following replacements:

  • DISPLAY_NAME: Name for the key. Typically an app name.
  • BUNDLE_IDs: iOS bundle ids of apps allowed to use the key. Specify multiple bundle IDs as a comma-separated list.

HTTP method and URL:

POST https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/keys

Request JSON body:

{
  "displayName": "DISPLAY_NAME",
  "iosSettings": {
   "allowedBundleIds":"BUNDLE_IDs"

  }
}

To send your request, choose one of these options:

curl

Save the request body in a file named request.json, and execute the following command:

curl -X POST \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json; charset=utf-8" \
-d @request.json \
"https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/keys"

PowerShell

Save the request body in a file named request.json, and execute the following command:

$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }

Invoke-WebRequest `
-Method POST `
-Headers $headers `
-ContentType: "application/json; charset=utf-8" `
-InFile request.json `
-Uri "https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/keys" | Select-Object -Expand Content

You should receive a JSON response similar to the following:


{
  "name": "projects/project-id/keys/6LfhtywnAAAAABY3sCS2duZ6A55kmDXz-PNEgKgT",
  "displayName": "DISPLAY_NAME",
  "iosSettings": {
    "allowAllBundleIds": false,
    "allowedBundleIds": [
        BUNDLE_IDS
    ]
  },
  "labels": {},
}

REST (Android)

Before using any of the request data, make the following replacements:

  • DISPLAY_NAME: Name for the key. Typically an app name.
  • PACKAGE_NAMES: Android package names of apps allowed to use the key. Specify multiple package names as a comma-separated list.

HTTP method and URL:

POST https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/keys

Request JSON body:


{
  "displayName": "DISPLAY_NAME",
  "androidSettings": {
  "allowedPackageNames":"PACKAGE_NAMES"
  }
}

To send your request, choose one of these options:

curl

Save the request body in a file named request.json, and execute the following command:

curl -X POST \
-H "Authorization: Bearer $(gcloud auth print-access-token)" \
-H "Content-Type: application/json; charset=utf-8" \
-d @request.json \
"https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/keys"

PowerShell

Save the request body in a file named request.json, and execute the following command:

$cred = gcloud auth print-access-token
$headers = @{ "Authorization" = "Bearer $cred" }

Invoke-WebRequest `
-Method POST `
-Headers $headers `
-ContentType: "application/json; charset=utf-8" `
-InFile request.json `
-Uri "https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/keys" | Select-Object -Expand Content

You should receive a JSON response similar to the following:


{
  "name": "projects/project-id/keys/6LcioSknAAAAABrjlMuZv2fjIGYMqwaAFC9izhoy",
  "displayName": "DISPLAY_NAME",
  "androidSettings": {
      "allowAllPackageNames": false,
      "allowedPackageNames": [
          PACKAGE_NAMES
      ],
      "supportNonGoogleAppStoreDistribution": false
  },
  "labels": {},
}

What's next