Skip to main content
Comprehensive guide to diagnosing and fixing issues with Floppydata proxies.

Quick error lookup

407 Auth Failed

Wrong credentials

403 Forbidden

IP whitelist or access issue

429 Rate Limit

Too many requests

502 Bad Gateway

Target site issue

504 Timeout

Request took too long

Connection Error

Can’t connect to proxy

HTTP error codes

407 Proxy Authentication Required

What it means: Your credentials are incorrect or missing
  • Wrong username or password
  • Credentials not properly formatted
  • Extra spaces in credentials
  • Password changed in dashboard but not updated in code
  • Special characters not URL-encoded
1. Verify credentials in dashboardGo to Dashboard → Settings and copy fresh credentials2. Check for extra spaces
3. URL-encode special characters
4. Test with curl

403 Forbidden

What it means: Access denied to the resource
  • IP whitelist enabled but your IP not added
  • Insufficient balance
  • Target website blocking proxy IP
  • Country/city not available in your plan
  • Proxy type not allowed for your account
1. Check IP whitelistIf IP whitelisting is enabled:
  • Get your current IP: curl https://api.ipify.org
  • Add it in Dashboard → Settings → IP Whitelist
2. Check balance
3. Try different proxy parameters
4. Check target websiteSome sites block all proxies. Try:
  • Different session ID (new IP)
  • Different proxy type
  • Web Data instead

429 Too Many Requests

What it means: Rate limit exceeded
  • Too many concurrent requests
  • Requests sent too quickly
  • Target website rate limiting
  • Exceeding plan limits
1. Add delays between requests
2. Implement exponential backoff
3. Use rotating sessions
4. Check concurrent requestsReduce number of parallel requests if using async/threading

502 Bad Gateway

What it means: Target server returned invalid response
  • Target website is down
  • Target blocking proxy IPs
  • Network issue between proxy and target
  • Target website maintenance
1. Verify target site is upCheck if the website works in your browser without proxy2. Try different proxy type
3. Use session parameter
4. Consider Web DataFor protected sites, use the Web Data API instead:

504 Gateway Timeout

What it means: Request took too long to complete
  • Target website slow to respond
  • Network congestion
  • Complex page rendering
  • Timeout set too low
  • Slow proxy location
1. Increase timeout
2. Try different proxy location
3. Use datacenter for speed
4. Set separate connect and read timeouts

Connection errors

Connection Refused

What it means: Can’t connect to proxy server
  • Wrong host or port
  • Firewall blocking connection
  • Network issue
  • Typo in proxy URL
1. Verify host and port
2. Check available ports
  • HTTP: 10080
  • HTTPS: 10443
  • SOCKS5: 10800
3. Test connectivity
4. Check firewallEnsure your firewall allows outbound connections on port 10080

SSL Certificate Error

What it means: SSL verification failed
Temporary fix (not recommended for production):
Better solution:

Target website errors

Captcha / Challenge

What it means: Target detected automation
1. Use residential or mobile proxies
2. Add realistic headers
3. Add delays
4. Use Web DataWeb Data can handle protected pages:

IP Blocked

Signs: 403 errors, blank pages, infinite redirects
1. Force per-request rotation
2. Try different proxy type
3. Add delays between requests
4. Use different sessions

Session issues

Session Keeps Expiring

Sessions expire after 10 minutes of inactivity
1. Send keepalive requests
2. Use a static IP insteadFor long-running sessions, use a static proxy returned by the Static Proxy endpoint:

IP Not Changing

You’re using a session parameter
1. Remove session parameter
2. Change session value
3. Force rotation

Performance issues

Slow Requests

1. Use datacenter proxies
2. Use closer proxy location
3. Implement connection pooling
4. Use async requests

Debugging tools

Test proxy connection

Check proxy IP

Enable logging

Validate via API

FAQ

Via API:
Via Dashboard: app.floppydata.com
  • HTTP: 10080 (default, recommended)
  • HTTPS: 10443
  • SOCKS5: 10800
Most tools work with port 10080.
Yes! The session is tied to the session ID in the username, not to your device.
Speed depends on:
  • Proxy type: Datacenter > Residential > Mobile
  • Location: Closer proxy = faster
  • Network congestion: Varies by time
  • Target website: Some sites are just slow
For best speed, use datacenter proxies in the same region as target.
Depends on your plan. Check limits:
Or contact support for custom limits.
Yes, in Dashboard → Settings → IP WhitelistWhen enabled, only whitelisted IPs can use your proxies.
rotation—1 means rotation=-1 in the builder API:
  • New IP every request
  • Best for broad scraping where identity stability is not needed
rotation-0 means rotation=0 in the builder API:
  • Keep the same IP within a session
  • Best for login, checkout, or other multi-step flows

Getting help

Check API status

See if there are any ongoing issues

Contact support

Email: support@floppydata.comResponse time: < 24 hours

Dashboard

Check balance, usage, and settings

API Reference

Complete API documentation
When contacting support, include:
  • Error message or code
  • Your code snippet (remove credentials!)
  • Timestamp when error occurred
  • Expected vs actual behavior