Questions tagged [recaptcha-enterprise]

Questions related to problems explicit to the latest reCAPTCHA version: "reCAPTCHA Enterprise", which is a GCP product. If you use a different version of reCAPTCHA, use a different tag.

There are multiple reCAPTCHA versions, as seen in this official documentation.

This tag is used exclusively for the latest version: "reCAPTCHA Enterprise"

ReCAPTCHA Enterprise is a Google Cloud Platform product, while the previous versions are not.

For non-GCP reCAPTCHA questions, use the generic tag.

If the question is explicit for the previous version, you can use the specific tag: . Docs here.

83 questions
2
votes
1 answer

When i integrate recaptcha-enterprise into iOS with cocoapods,something is wrong with arm64, how to solve it

pod 'RecaptchaEnterprise','17.0.0', :source => "https://cpdc-eap.googlesource.com/RecaptchaEnterprise.git" cocoapods is success, but xcode show the following error: Undefined symbols for architecture arm64: "_JSObjectIsFunction", referenced…
hyoriMin
  • 21
  • 1
2
votes
0 answers

reCAPTCHA Enterprise, getting invalid_reason: 6

I am developing a web application with reCAPTCHA enterprise (score based, not checklist based). Everything has been integrated, and when I test it I often get reCAPTCHA error with invalid_reason "6". "6" however is not registered in the Google Cloud…
gregory112
  • 324
  • 2
  • 12
2
votes
1 answer

Does reCaptcha Enterprise pricing include failed verifications?

The reCaptcha Enterprise pricing is like "first 1 million free, then $1 per 1,000 verifications". Does that pricing include failed verifications? Like, can an attacker feed the random values to a server repeatedly (all of which will fail) and rack…
adam-p
  • 660
  • 6
  • 16
2
votes
2 answers

Google recaptcha Enterprise returns zero for risk analysis score

I'm using Google recaptcha enterprise in my app. According to the docs for interpreting an assessment. Four score levels are available by default: 0.1, 0.3, 0.7, 0.9. I have not contacted google's sales team to receive more granular score levels. In…
Victor Cui
  • 1,393
  • 2
  • 15
  • 35
2
votes
1 answer

how to make Google Cloud Armor interpret recaptcha score

I have GKE applications in following setup: front app works on example.com backend app works on api.example.com I expose those loads via Ingress and all looks cool. I want to protect application with Cloud Armor. I added annotation to api service.…
Mateusz
  • 1,149
  • 1
  • 16
  • 33
2
votes
0 answers

ReCaptcha Enterprise in Angular component shows console error when loading or resetting

I have a Login page in Angular who shows a reCaptcha challenge to be completed only when the userName has been attepting to logIn with an invalid password several times in a short time lapse. When the component that contains the reCaptcha widget is…
2
votes
1 answer

Unable to validate google recaptcha enterprise. getting error: java.io.IOException: The Application Default Credentials are not available

Unable to validate google recaptcha enterprise. getting error: java.io.IOException: The Application Default Credentials are not available. java.io.IOException: The Application Default Credentials are not available. They are available if running in…
2
votes
2 answers

recaptcha v2 -> enterprise server side verification equivalent?

I'm trying to convert a v2 recaptcha flow to use the enterprise version. What is the equivalent to the server side call to https://www.google.com/recaptcha/api/siteverify? If I try to send the same or similar POST request to…
j s
  • 31
  • 4
1
vote
1 answer

Are custom actions supported under iOS reCAPTCHA Enterprise?

I am following the official guide provided by Google for integrating with iOS app. They only show an example for calling the excecute() method with RecaptchaAction.login action. Within Xcode editor, the RecaptchaAction object seems to only have…
sonyisda1
  • 422
  • 1
  • 8
  • 21
1
vote
2 answers

Can not annotate assessment from recaptcha enterprise

I'm trying to annotate an assessment, for now from Postman but I'm getting 404 error from the URL that is posted on Google's guide. The URL I'm trying is https://recaptchaenterprise.googleapis.com/v1/projects/PROJECT_ID/assessments/ASSESSMENT_ID Of…
Whip
  • 1,891
  • 22
  • 43
1
vote
1 answer

While initialising reCAPTCHA Enterprise in ios app i'm getting unrecognized selector sent to instance 0x2833a81e0 error

I'm trying to integrate recaptcha enterprice sdk in my ios app, built with swift. I followed the documentation mentioned here. https://cloud.google.com/recaptcha-enterprise/docs/instrument-ios-apps#swift. I have imported the…
Samuel I
  • 35
  • 4
1
vote
1 answer

skip_billing_check for reCaptcha Enterprise migration

I'm trying to migrate a v2 reCaptcha to the Enterprise version, but I keep getting the error: "FAILED_PRECONDITION: No billing account is linked to your GCP project. A billing is not mandatory for migrating. But any request above the free quota will…
dddx
  • 13
  • 3
1
vote
1 answer

Could not construct ApplicationDefaultCredentials with Recaptcha Enterprise

I'm getting a "Could not construct ApplicationDefaultCredentials" from Google Recaptcha Enterprise, but only on our remote server. I've tried everything I can think of to isolate the issue, but I've had no luck. I have two Recaptcha Enterprise keys:…
1
vote
1 answer

INVALID_ARGUMENT when sending V3 reCAPTCHA token for assessment

We are getting an error when sending reCAPTCHA tokens for assessment. The token is produced on the client using the RecaptchaEnterprise.xcframework and should be sent from our backend to Google. This is the code that instantiate the client: …
Arik Segal
  • 2,963
  • 2
  • 17
  • 29
1
vote
1 answer

Sending request to reCAPTCHA Enterprise API fails

I am trying to create ReCaptcha assessment using their REST API in my backend server. From reading the documentation, I understand that the request body contains an instance of Assesment, but when I try to send a request, I receive the following…