From bb862d3c1ae1b9113aeb50c69eb37de367320a80 Mon Sep 17 00:00:00 2001 From: noahcoolboy <46800081+noahcoolboy@users.noreply.github.com> Date: Thu, 10 Aug 2023 15:06:05 +0200 Subject: [PATCH] Update docs --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 1670bb0..84497b4 100644 --- a/README.md +++ b/README.md @@ -39,6 +39,11 @@ const session = new fun.Session(token, { // If you would like to let a user solve the captcha in their browser // NOTE: Embed URLs will not work unless put in an iframe. console.log(session.getEmbedUrl()) + +// Suppressed captchas are instantly valid an do not require for you to load a challenge (it will error) +// These can occur when using a trusted IP and good fingerprint +// You can check if a captcha is suppressed by doing the following: +console.log(session.tokenInfo.sup == "1") ``` One session can get you 10 funcaptcha challenges, you will have to get another session after that.