sp-dev-fx-webparts/samples/react-recaptcha
Hugo Bernier 411f1b1eca Changed authors to contributors 2023-02-18 22:58:44 -05:00
..
.devcontainer Added spfx 1.9.1 containers 2022-02-15 23:34:24 -05:00
assets Changed docs links to learn 2022-10-24 09:42:45 -04:00
config Few changes to make webpart configurable 2019-10-10 01:12:09 +05:30
screens Few changes to make webpart configurable 2019-10-10 01:12:09 +05:30
src Few changes to make webpart configurable 2019-10-10 01:12:09 +05:30
teams Adding react-recaptch sample 2019-10-09 01:04:27 +05:30
.editorconfig Adding react-recaptch sample 2019-10-09 01:04:27 +05:30
.gitignore Adding react-recaptch sample 2019-10-09 01:04:27 +05:30
.yo-rc.json Adding react-recaptch sample 2019-10-09 01:04:27 +05:30
README.md Changed authors to contributors 2023-02-18 22:58:44 -05:00
gulpfile.js Adding react-recaptch sample 2019-10-09 01:04:27 +05:30
package-lock.json Few changes to make webpart configurable 2019-10-10 01:12:09 +05:30
package.json Few changes to make webpart configurable 2019-10-10 01:12:09 +05:30
tsconfig.json Adding react-recaptch sample 2019-10-09 01:04:27 +05:30
tslint.json Adding react-recaptch sample 2019-10-09 01:04:27 +05:30

README.md

SPFx Google reCaptcha Sample

Summary

This is sample web part which showcase how to implement Google reCaptcha v2 in SPFx. CAPTCHA is used to prevent bots from automatically submitting forms with SPAM or other unwanted content. If we are building a custom input form to get feedback, newsletter subscription or contact us form using SPFx webpart. We might have to implement SPAM protection using some CAPTCHA resolving technique. This sample can come in handy to extend it for your business requirement if you need to implement CAPTCHA in SPFx web part.

  • Please refer this link to know 'How to build this from Scratch'

web part in action

Compatibility

⚠️ Important
Every SPFx version is only compatible with specific version(s) of Node.js. In order to be able to build this sample, please ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.
Refer to https://aka.ms/spfx-matrix for more information on SPFx compatibility.

SPFx 1.9.1 Node.js v10 | v8 Compatible with SharePoint Online Does not work with SharePoint 2019 Does not work with SharePoint 2016 (Feature Pack 2) Local Workbench Compatible Hosted Workbench Compatible Compatible with Remote Containers

Applies to

Prerequisites

We would need to register our site which wants to use reCaptcha at Google. Follow below steps to get site key.

  • Browse this link.
  • Login with valid google account.
  • Provide a valid site label name.
  • Select reCAPTCHA v2, Select "I'm not a robot"
  • Add domain name, if you are using local workbench enter localhost.
  • For using it in context of SharePoint, enter your tenant url https://yourorg.sharepoint.com
  • Accept terms and condition
  • Submit

Google recaptcha registration

On sucessfull submission, we get site key and secret key, copy site key somewhere we would be using it later.

Google recaptcha registration

Contributors

Version history

Version Date Comments
1.0.0 Oct 10, 2019 Implemented few changes
1.0.0 Oct 08, 2019 Initial release

Minimal Path to Awesome

  • Clone this repository
  • in the command line run:
    • npm install
    • gulp serve

This sample can also be opened with VS Code Remote Development. Visit https://aka.ms/spfx-devcontainer for further instructions.

Features

This Web Part illustrates the following concepts on top of the SharePoint Framework:

Disclaimer

THIS CODE IS PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.