Click the registration button and register using Github or Gmail
Use the "Restore Password" link on the login page.
Write in the general chat after registration to the admin nick "ADMIN" or write to me in TG ADMIN
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.
Before using it, you need to get your "Api Key" on the "PROFILE" page
npm install puppeteer puppeteer-extra allcaptcha-puppeteer
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()
})
Before using it, you need to get your "Api Key" on the "PROFILE" page
npm install playwright playwright-extra allcaptcha-playwright
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()
})