haohetao / yii2-rest-api-captcha

RESTful API 验证码图片生成器

2.1.4 2018-09-11 03:49 UTC

This package is auto-updated.

Last update: 2024-09-09 16:22:15 UTC


README

RESTful API 简单验证码图片生成器 22

安装

推荐通过 composer 安装

composer require haohetao/yii2-rest-api-captcha

使用方法

生成验证码代码 (image/png;base64)

    public function actions()
    {
        return [
            'captcha' => [
                'class' => 'haohetao\captcha\CaptchaAction',
                'maxLength' => 4,
                'minLength' => 4
            ]
        ];
    }

在 curl 中使用(测试用)

curl https:///site/captcha

验证验证码代码

    public function rules()
    {
        return [
            [
                'code', \haohetao\captcha\CaptchaValidator::class
            ]
        ];
    }