Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 592 Bytes

README.md

File metadata and controls

33 lines (26 loc) · 592 Bytes

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