flutter_tencent_captcha 0.0.3
flutter_tencent_captcha: ^0.0.3 copied to clipboard
适用于 Flutter 的腾讯云验证码插件
flutter_tencent_captcha #
适用于 Flutter 的腾讯云验证码插件
屏幕截图 #
[./screenshots/flutter_tencent_captcha-android.jpeg]
[./screenshots/flutter_tencent_captcha-ios.png]
快速开始 #
安装 #
将此添加到包的 pubspec.yaml 文件中:
dependencies:
flutter_tencent_captcha: ^0.0.3
copied to clipboard
您可以从命令行安装软件包:
$ flutter packages get
copied to clipboard
用法 #
获取 SDK 版本
String sdkVersion = await TencentCaptcha.sdkVersion;
copied to clipboard
初始化 SDK
TencentCaptcha.init('<appId>');
copied to clipboard
开始验证
详细参数请参见:https://help.tencent.com/document_detail/121898.html
TencentCaptchaConfig config = TencentCaptchaConfig(
bizState: 'tencent-captcha',
enableDarkMode: true,
);
await TencentCaptcha.verify(
config: config,
onLoaded: (dynamic data) {
_addLog('onLoaded', data);
},
onSuccess: (dynamic data) {
_addLog('onSuccess', data);
},
onFail: (dynamic data) {
_addLog('onFail', data);
},
);
copied to clipboard
许可证 #
MIT License
Copyright (c) 2021 LiJianying <lijy91@foxmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
copied to clipboard