HOME

Frequently Asked Questions

How do I register?

Click the registration button and register using Github or Gmail

How can I recover my password?

Use the "Restore Password" link on the login page.

How do I contact support?

Write in the general chat after registration to the admin nick "ADMIN" or write to me in TG ADMIN

How to use?

In general, there are two roles: "employees" and "customers"

"Employee" take "task" to work on the "STREAM" page by clicking the "Get Task" button, and if there is a task for them, they receive a task description and a browser stream. After completing the task, they click the "Finish Task" button

"Customers" transmit the task description and browser page stream using the "Puppeteer" plugin

Below is a detailed analysis of the actions for each role, followed by an example of code.

How to use it if you are an "Employee"?
How to use it if you are an "Customers"?
Example code for "Puppeteer"

Before using it, you need to get your "Api Key" on the "PROFILE" page

Bash
          npm install puppeteer puppeteer-extra allcaptcha-puppeteer 
          
JavaScript
          
import puppeteer from "puppeteer-extra";
import puppeteerStream from "allcaptcha-puppeteer";
puppeteer.use(
  puppeteerStream({
    apiKey:""  // YOUR TOKEN
  }))
puppeteer.launch({headless:"new"}).then(async browser => {
  const page = await browser.newPage()
  await page.goto("https://rucaptcha.com/demo");
  const solve=await page.solveCustom({message:`TEST`});
  console.log(solve)
  await browser.close()
})

    
          
Example code for "Playwright"

Before using it, you need to get your "Api Key" on the "PROFILE" page

Bash
          npm install playwright playwright-extra allcaptcha-playwright
          
JavaScript
          
import { chromium } from 'playwright-extra'
import puppeteerStream from "allcaptcha-playwright";
chromium.use(
  puppeteerStream({
    apiKey:""  // YOUR TOKEN 
  })
);
chromium.launch({ headless: true,channel:"chrome"}).then(async browser => {
  const page = await browser.newPage()
  await page.goto("https://rucaptcha.com/demo");
  const solve=await page.solveCustom({message:`TEST`});
  console.log(solve)
  await browser.close()
})