dart_naver_captcha 0.1.0
dart_naver_captcha: ^0.1.0 copied to clipboard
An unofficial Dart client for NAVER image and audio CAPTCHA APIs.
example/dart_naver_captcha_example.dart
import 'package:dart_naver_captcha/dart_naver_captcha.dart';
Future<void> main() async {
NaverWithoutLoginApi.init(
clientId: 'YOUR_CLIENT_ID',
clientSecret: 'YOUR_CLIENT_SECRET',
);
final key = await CaptchaApi.issueImageKey();
final image = await CaptchaApi.challenge(CaptchaType.image, key: key.key);
print(image.length);
}