When the hCaptcha ist first loaded onto the Website it throws error 403 (Forbidden). It looks fine, but when the captcha is pressed, the loading (orange circle) goes on indefinitely.
GET https://hcaptcha.com/checksiteconfig?v=c65510b&host=localhost&sitekey=33cb1fe1-c243-40c0-9488-5816b2418e6c&sc=1&swa=1
The HTML looks like this:
<ng-hcaptcha (verify)="onVerify($event)"></ng-hcaptcha>
The import for hCaptcha looks like this:
import { NgHcaptchaModule } from 'ng-hcaptcha';
@NgModule({
declarations: [
AppComponent,
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
FormsModule,
HttpClientModule,
RouterModule,
CommonModule,
ReactiveFormsModule,
NgHcaptchaModule.forRoot({
siteKey: '33cb1fe1-c243-40c0-9488-5816b2418e6c',
languageCode: 'en',
}),
],
bootstrap: [AppComponent],)}
Any help or pointers are highly appreciated.