hCaptcha issue

Working on setting up hCaptcha, but I keep getting "request disallowed". When I look at the hCaptcha site it shows that the captchas are being delivered and solved, but they are not being verified. I can see that the captcha token is being generated and sent with the signUp info to supabase.

const { error, user } = await supabase.auth.signUp(
      {
        email: data.email,
        password: data.password,
      },
      { data: { username: data.username, team: data.team }, 
        captchaToken: captchaToken  }
    );


everything else is set up exactly as shown in the guide here: https://supabase.com/docs/guides/auth/auth-captcha

Sign ups work just fine with out captcha. Any suggestions? And yes..I have checked the secret key, several times=)
Add Captcha Protection to your Supabase project
Was this page helpful?