I was trying to use proxies in my repl. I did some research, and in the Replit ToS in the Prohibited Actions on point 24 it says:
You must not use the Service to create a proxy with the purpose of circumventing any firewall or other access control measure
My repl got banned/blocked due to this, but i just want to make myself clear - I do not want to use replit as a proxy, And I don’t intend to use replit to create a proxy.
I wanted access to a webservice, but unfortunately replit’s IPs are banned for this service. I don’t have any ill/malicious intents, i am just trying to automate a tedious task.
If this helps, here is my proxy service’s example code, which i used (which got me banned.)
const axios = require("axios");
const { HttpsProxyAgent } = require("https-proxy-agent");
const url = "https://ip.smartproxy.com/json";
const proxyAgent = new HttpsProxyAgent(
"http://USERHERE:PASSHERE@gate.smartproxy.com:10000",
);
axios
.get(url, {
httpsAgent: proxyAgent,
})
.then((response) => {
console.log(response.data);
});