Skip to content

captchasio/captchas-io-php-sdk-class

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

PHP SDK Class for CAPTCHAs.IO API

The easiest way to quickly integrate CAPTCHAs.IO captcha solving service into your code to automate solving of any types of captcha.

How to Use

<?php

	require_once('captchasio.class.php');

	// recaptcha
	$api = new CAPTCHASIO ('<MY_API_KEY>');
	$token = $api->recaptcha ('6Le85AAaAAAAAA6OYetdaV2nOlahkOZc03cjztcH', 'https://captchas.io/recaptcha');	
	
	print $token;

	// image 
	$api = new CAPTCHASIO ('<MY_API_KEY>');
	$answer = $api->image('example/image_captcha_file.png');
	
	print $answer;
?>

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages