Skip to content

Latest commit

 

History

History

examples

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Running Examples

  1. Open the project directory:

    cd path/to/solvecaptcha-php

  2. Make sure dependencies are installed:

    composer install

  3. Run any example file using PHP:

    php examples/recaptcha_v2.php

    Replace recaptcha.php with the name of the example you want to run.

    📝 Most examples require a valid API key. You can set it like this:

    $solver = new \SolveCaptcha\SolveCaptcha('YOUR_API_KEY');

    or in some files:

    $apiKey = 'YOUR_API_KEY';

    🔐 Don’t forget to replace 'YOUR_API_KEY' with your actual SolveCaptcha API key.