rotating residential proxy works for Reddit?

dlyhai

Elite Member
Joined
May 31, 2015
Messages
3,335
Reaction score
471
I want to try Rotating residential proxy, it works for reddit? thanks very much
 
I found that Mobile proxies work best for it honestly.
 
Yes it's work but it may be expensive, you need block image and video load for save bandwidth
 
Yes, i found it is really expensive, how can I block image and video load? thanks
depends what you are using if is a multilogin, automation or just a browser
 
Yes, i found it is really expensive, how can I block image and video load? thanks
i use puppteer for automate, here is the code:

await page.setRequestInterception(true);
page.on("request", (request) => {
const url = request.url().toLowerCase();
const resourceType = request.resourceType();
if (
["media", "image", "png", "font", "manifest"].includes(resourceType) ||
url.endsWith(".mp4") ||
url.endsWith(".avi") ||
url.endsWith(".flv") ||
url.endsWith(".mov") ||
url.endsWith(".wmv") ||
url.endsWith(".ts") ||
url.endsWith(".m3u8") ||
url.endsWith(".aac") ||
url.endsWith(".gif") ||
url.endsWith(".gifv") ||
url.endsWith(".pgn") ||
url.endsWith(".jpg") ||
url.endsWith(".jpeg") ||
url.endsWith(".webp") ||
(resourceType === "stylesheet" &&
(!url.includes("gstatic") || !url.includes("recaptcha")))
) {
debug(`ABORTING reources: `, url);
request.abort();
} else {
request.continue();
}
});
 
depends what you are using if is a multilogin, automation or just a browser
I use adspower and it can be used?
i use puppteer for automate, here is the code:

await page.setRequestInterception(true);
page.on("request", (request) => {
const url = request.url().toLowerCase();
const resourceType = request.resourceType();
if (
["media", "image", "png", "font", "manifest"].includes(resourceType) ||
url.endsWith(".mp4") ||
url.endsWith(".avi") ||
url.endsWith(".flv") ||
url.endsWith(".mov") ||
url.endsWith(".wmv") ||
url.endsWith(".ts") ||
url.endsWith(".m3u8") ||
url.endsWith(".aac") ||
url.endsWith(".gif") ||
url.endsWith(".gifv") ||
url.endsWith(".pgn") ||
url.endsWith(".jpg") ||
url.endsWith(".jpeg") ||
url.endsWith(".webp") ||
(resourceType === "stylesheet" &&
(!url.includes("gstatic") || !url.includes("recaptcha")))
) {
debug(`ABORTING reources: `, url);
request.abort();
} else {
request.continue();
}
});
I used adspower, can i use this code for it?
 
All auto
i use puppteer for automate, here is the code:

await page.setRequestInterception(true);
page.on("request", (request) => {
const url = request.url().toLowerCase();
const resourceType = request.resourceType();
if (
["media", "image", "png", "font", "manifest"].includes(resourceType) ||
url.endsWith(".mp4") ||
url.endsWith(".avi") ||
url.endsWith(".flv") ||
url.endsWith(".mov") ||
url.endsWith(".wmv") ||
url.endsWith(".ts") ||
url.endsWith(".m3u8") ||
url.endsWith(".aac") ||
url.endsWith(".gif") ||
url.endsWith(".gifv") ||
url.endsWith(".pgn") ||
url.endsWith(".jpg") ||
url.endsWith(".jpeg") ||
url.endsWith(".webp") ||
(resourceType === "stylesheet" &&
(!url.includes("gstatic") || !url.includes("recaptcha")))
) {
debug(`ABORTING reources: `, url);
request.abort();
} else {
request.continue();
}
});
All automated tools are now detected by Reddit and other sites. I suggest hiring cheap VAs and start from there
 
Why rotating? It would be very suspicious if you log in to the same account from a different residential IP every time.

You're probably better off using static residential proxies, so that each time you log in to an account it will have the same IP.
 
i use puppteer for automate, here is the code:

await page.setRequestInterception(true);
page.on("request", (request) => {
const url = request.url().toLowerCase();
const resourceType = request.resourceType();
if (
["media", "image", "png", "font", "manifest"].includes(resourceType) ||
url.endsWith(".mp4") ||
url.endsWith(".avi") ||
url.endsWith(".flv") ||
url.endsWith(".mov") ||
url.endsWith(".wmv") ||
url.endsWith(".ts") ||
url.endsWith(".m3u8") ||
url.endsWith(".aac") ||
url.endsWith(".gif") ||
url.endsWith(".gifv") ||
url.endsWith(".pgn") ||
url.endsWith(".jpg") ||
url.endsWith(".jpeg") ||
url.endsWith(".webp") ||
(resourceType === "stylesheet" &&
(!url.includes("gstatic") || !url.includes("recaptcha")))
) {
debug(`ABORTING reources: `, url);
request.abort();
} else {
request.continue();
}
});
how to use
 
As long as it is not a robot registration, there is no need to update the IP
 
Back
Top