https://github.com/alicw/recaptcha-v2-be
Backend to verify user reCAPTCHA responses
https://github.com/alicw/recaptcha-v2-be
Last synced: 6 months ago
JSON representation
Backend to verify user reCAPTCHA responses
- Host: GitHub
- URL: https://github.com/alicw/recaptcha-v2-be
- Owner: AliCW
- Created: 2023-11-17T21:42:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-11T17:52:15.000Z (almost 2 years ago)
- Last Synced: 2025-04-05T05:41:51.055Z (over 1 year ago)
- Language: Python
- Size: 4.53 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# reCAPTCHA-V2-BE
The backend is built using a very simple django setup to facilitate reCAPTCHA V2 checks with google. This program serves the very basic frontend (https://github.com/AliCW/reCAPTCHAv2-test-example).
## Setup...
Install python:
sudo apt install python3
Create a virtual environment for your python backend to run in:
python3 -m venv
Clone the repo into virtual environment directory you just made:
git clone https://github.com/AliCW/reCAPTCHA-V2-BE.git
Create a .env file in the api root directory & add your DJANGO SECRET_KEY
To run the server, navigate to the api/recaptchV2Test directory and type the below command to listen for post requests
python3 manage.py runserver