FAQ - najczęściej zadawane pytania
Odpowiedzi na często zadawane pytania
What are mobile proxies good for?
I found mobile proxies many times cheaper than yours.
Can I change the mobile proxy IP address?
What is changing an IP address via a link?
Can I use mobile proxies in specialized programs?
What is the maximum number of connections possible?
What is the speed on mobile proxies?
What is the advantage of mobile IP?
How many sessions can you run on a port?
For what resources are proxies suitable?
Are your proxies suitable for working with Instagram?
I want to make money from mobile proxies, how to do this?
When changing IP I get an error message
My mobile proxy lease has expired, can I return it?
Can mobile proxies be used for spam?
The speed of the mobile proxy has dropped, what should I do?
I don’t receive an SMS when registering, what should I do?
The IP address issued by the proxy does not match the specified GEO, why?
How often can you change GEO or operator?
Every 2 minutes
How often can you change the IP address on mobile proxies?
How long does it take for mobile proxies to change IP address?
Do you have restrictions on access to sites?
The proxies didn't work for me, do you have a refund option?
Is it possible to change the GEO and operator of a proxy?
Do I need to provide my wallet number when returning to BinancePay?
No. The refund will be made to the Binance wallet from which the payment was made.
How to delete an account?
What protocols are supported?
Proxy does not work with HTTPS in Playwright/Selenium (ERR_TUNNEL_CONNECTION_FAILED)
Problem: when using a proxy in Playwright, Selenium or other automation tools, HTTPS websites do not open and you get ERR_TUNNEL_CONNECTION_FAILED error.
Cause: usually the proxy address is specified incorrectly. To access HTTPS via HTTP CONNECT tunnel, you must use the HTTP port of the proxy.
Solution:
1. Use the HTTP port from the "My Proxies" section (not the SOCKS5 port).
2. Connection format: http://login:password@address:HTTP_port
3. The scheme is always http://, even for accessing HTTPS websites — the browser will automatically send a CONNECT command through this port.
Playwright example (Node.js):
const browser = await chromium.launch({
proxy: {
server: 'http://address:HTTP_port',
username: 'login',
password: 'password'
}
});
Selenium example (Python):
proxy = "http://login:password@address:HTTP_port"
options.add_argument(f"--proxy-server={proxy}")
Important: do not use https:// in the proxy address — this is a common mistake. The proxy server accepts connections via HTTP, while HTTPS traffic is passed through a tunnel (CONNECT method) in encrypted form.