haohetao / yii2-rest-api-captcha
The captcha image generator for restful api
Installs: 695
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 2
pkg:composer/haohetao/yii2-rest-api-captcha
Requires
- php: >=7.1
- yiisoft/yii2: *
README
Simple captcha image generator for restful api 22
Installation
Recommended installation via composer:
composer require haohetao/yii2-rest-api-captcha
Usage
Generate captcha code (image/png;base64):
public function actions() { return [ 'captcha' => [ 'class' => 'haohetao\captcha\CaptchaAction', 'maxLength' => 4, 'minLength' => 4 ] ]; }
use in curl(for test):
curl http://localhost/site/captcha
Verify captcha code:
public function rules() { return [ [ 'code', \haohetao\captcha\CaptchaValidator::class ] ]; }