Release v1.0.0 π - Solvecaptcha Ruby
First major release of the Solvecaptcha Ruby gem, a fast and reliable captcha solver for Ruby.
π Highlights
- Stable captcha solving API wrapper
- Support for reCAPTCHA v2/v3, hCaptcha, Geetest, Turnstile and more
- Easy captcha bypass in your Ruby apps
- Full RubyGems.org integration
π¦ Installation
gem install solvecaptcha-ruby
π‘ Quick Start
require 'solvecaptcha-ruby'
# Initialize client with your Solvecaptcha API key
client = ApiSolveCaptcha::Client.new(api_key: 'YOUR_API_KEY')
# Solve reCAPTCHA v2
token = client.solve_recaptcha(
site_key: '6Lc_aX0UAAAAAB-example',
page_url: 'https://your.site.com/form'
)
puts token # => "03AGdBq25β¦"
π§ Example: Generic Captcha Bypass
# Solve any supported captcha type
result = client.solve(
type: 'hcaptcha',
site_key: '10000000-ffff-ffff-ffff-000000000001',
page_url: 'https://example.com/demo-hcaptcha'
)
puts result[:captcha_id] # Solvecaptcha task ID
puts result[:solution] # The captcha solution token
For detailed API reference and examples, see README.md.
Full Changelog: https://github.com/solvercaptcha/solvecaptcha-ruby/commits/v1.0.0