Skip to content
This repository has been archived by the owner on May 13, 2021. It is now read-only.

bq solve_captcha

Liam Jack edited this page Aug 21, 2015 · 1 revision

Endpoint

/bq/solve_captcha

Description

Used to attempt to answer a captcha previously provided by /bq/get_captcha

Request

  • captcha_id: Name of ZIP file, without the .zip (Format: [USERNAME]~[TIMESTAMP])
  • captcha_solution: Explained in Notes (Example: 000111100`)
  • username
  • timestamp
  • req_token

Response

  • find_friends_enabled

Notes

Supposing we have the following Captcha:

In-App Captcha 1

And we select all the images containing a ghost:

In-App Captcha 2

Taking a look at the image correspondance table:

Column 1 Column 2 Column3
Row 1 image0.png image1.png image2.png
Row 2 image3.png image4.png image5.png
Row 3 image6.png image7.png image8.png

We have selected image3.png, image4.png, image5.png, image6.png.

Store this in a table for each image write 1 when there is a ghost in the image and 0 when there isn't.

image0.png image1.png image2.png image3.png image4.png image5.png image6.png image7.png image8.png
Value 0 0 0 1 1 1 1 0 0

And there, ladies and gentlemen, is your captcha_solution string: 000111100 !

Clone this wiki locally