https://github.com/pardjs/recaptcha-server
๐The server side recaptcha module to do verification.
https://github.com/pardjs/recaptcha-server
Last synced: 3 months ago
JSON representation
๐The server side recaptcha module to do verification.
- Host: GitHub
- URL: https://github.com/pardjs/recaptcha-server
- Owner: pardjs
- License: mit
- Created: 2019-04-02T15:14:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T19:30:30.000Z (over 2 years ago)
- Last Synced: 2025-03-07T13:17:52.284Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 737 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 35
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# recaptcha-server
[](https://github.com/prettier/prettier)
[](https://greenkeeper.io/)
[](https://travis-ci.org/pardjs/recaptcha-server)
[](https://coveralls.io/github/pardjs/recaptcha-server?branch=master)The server side recaptcha module to do verification. Use with [Google reCaptcha](https://www.google.com/recaptcha)
## Usage
This verification used the v3 method, which returns a score (1.0 is very likely a good interaction, 0.0 is very likely a bot).
The lib by default use the `0.6` as the default passed minScore(not included)
```js
import Recaptcha from '@pardjs/recaptcha-server';// #RECAPTCHA_SECRET get from the google recaptcha site.
const recInstance = new Recaptcha('#RECAPTCHA_SECRET#');// Verifiy the token directly
// #RECAPTCHA_TOKEN get from the client
const v3Result = await recInstance.verifyV3Async('#RECAPTCHA_TOKEN#'); request.
// Verifiy the token with custom min passed score
const v3Result = await recInstance.verifyV3Async('#RECAPTCHA_TOKEN#', 0.8);// The v3Result example
// {
// isPassed: true,
// score: 0.9,
// hostName: 'dozto.com',
// action: 'contactUs',
// checkedAt: 2019-04-03T08:51:34.038Z
// }
```### Error Types
There will be a `type` in the throwed error object, and there are the following defined types
```yaml
RECAPTCHA_VERIFY_ERROR: The verification handled by google successfully, but faild in the verificatoin result.
RECAPTCHA_UNEXPECTED_ERROR: Unexpected error during process google reCaptcha verification.
```#### Example
```
{ Error: [recaptcha-server] Failed to verify recaptcha: invalid-secret
at Recaptcha. (/Users/ole3021/workspaces/pardjs/recaptcha-server/src/recaptcha-server.ts:3006:35)
at step (/Users/ole3021/workspaces/pardjs/recaptcha-server/src/recaptcha-server.ts:2909:27)
at Object.next (/Users/ole3021/workspaces/pardjs/recaptcha-server/src/recaptcha-server.ts:2797:20)
at fulfilled (/Users/ole3021/workspaces/pardjs/recaptcha-server/src/recaptcha-server.ts:2736:32)
at process._tickCallback (internal/process/next_tick.js:68:7) type: 'RECAPTCHA_UNEXPECTED_ERROR' }error.type === 'RECAPTCHA_VERIFY_ERROR' // true
```