1.0.0 • Published 2 years ago

tencent-captcha-async v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

tencent-captcha-async

Promise based TencentCaptcha.

Usage

Types

async function useTencentCaptcha(
  appId: string,
  options?: Partial<TencentCaptchaOptions>
): Promise<TencentCaptchaCallback>

Example

import { useTencentCaptcha } from 'tencent-captcha-async'
useTencentCaptcha('Your CaptchaAppId here', {
  // options
})
  // CHECK PASSED
  .then(({ ticket, randStr }) => {
    // do something
  })
  // CHECK FAILED
  .catch(({ errorCode, errorMessage }) => {
    // handle error
  })

See more: https://cloud.tencent.com/document/product/1110/36841