thetrustedzone
Elite Member
- Jun 15, 2010
- 3,994
- 3,462
Something I got multiple PMs about and also noticing in BHW posts ... Instagram accounts banning and Instagram proxies ...etc
here is my 2 cents :
Instagram has IPs database check against ... usually, they know if you are using proxy or not but not always.
when they detect you using a proxy, they don't block you like other platforms but instead, they are watching you carefully and apply more anti-bot factors against your account and this is one of the main reasons why automated IG accounts get banned quickly nowadays ... to understand that simply imagine you are refugee entered US country with a fake passport and for a reason FBI knew you used a fake passport to enter and allowed that BUT for your first mistake in the US you should expect FBI through you outside the US while if entered with a legit passport that mistake probably will not be noticeable! the passport here for the FBI same as your IP address for Instagram.
So how to know if your proxy is detected by Instagram or not?
We could do different tests to know that, simple and easy one -which also answer why some proxies do not work for scraping-, is sending an HTTP request with the proxy against Instagram public API end and watching the result: if Instagram redirects the request to login page this means the proxy is detected if Instagram didn't redirect and retrieved JSON data this means the proxy isn't detected.
Most Proxy providers when to assure you they selling working and good Instagram Proxies ... they usually test like this: send an HTTP request with the proxy to Instagram host if response status code 200 ok and timeout passed => good Instagram proxy, right? WRONG
If we want to test correctly the proxy is good and not detected by Instagram technically we do like this:
send HTTP request to IG API end > if got JSON response it's good and not detected, else it's detected proxy and not good for IG.
code example translates above(in c# but could do the same in any other programming language) :
Don't worry I know most of you not coders that code above provided for serious proxy providers want to improve the service for their clients and for junior bots coders... I made a simple online tool to test that here, it's part of my beta test here and in the next update the client desktop client will contain a similar IG proxy checker.. feel free to use any other tool test the same concept.
So now which proxy providers and which proxy type is good and not detected by Instagram?
in my tests, I found most of the data center proxies detected and not good for IG, while most of the rotating residential proxies including 4 g mobile proxies are good and not detected by Instagram.
@Saly Verona wrote an excellent article about the proxies type and why rotating residential including 4g mobile is good for social media.
I highly recommend reading it particularly if you are using automated tools.
BHW Proxy Marketplace full of sellers offers free trial test them before purchase.
If you have any questions/comments please reply in this thread and don't pm me it.
here is my 2 cents :
Instagram has IPs database check against ... usually, they know if you are using proxy or not but not always.
when they detect you using a proxy, they don't block you like other platforms but instead, they are watching you carefully and apply more anti-bot factors against your account and this is one of the main reasons why automated IG accounts get banned quickly nowadays ... to understand that simply imagine you are refugee entered US country with a fake passport and for a reason FBI knew you used a fake passport to enter and allowed that BUT for your first mistake in the US you should expect FBI through you outside the US while if entered with a legit passport that mistake probably will not be noticeable! the passport here for the FBI same as your IP address for Instagram.
So how to know if your proxy is detected by Instagram or not?
We could do different tests to know that, simple and easy one -which also answer why some proxies do not work for scraping-, is sending an HTTP request with the proxy against Instagram public API end and watching the result: if Instagram redirects the request to login page this means the proxy is detected if Instagram didn't redirect and retrieved JSON data this means the proxy isn't detected.
Most Proxy providers when to assure you they selling working and good Instagram Proxies ... they usually test like this: send an HTTP request with the proxy to Instagram host if response status code 200 ok and timeout passed => good Instagram proxy, right? WRONG
If we want to test correctly the proxy is good and not detected by Instagram technically we do like this:
send HTTP request to IG API end > if got JSON response it's good and not detected, else it's detected proxy and not good for IG.
code example translates above(in c# but could do the same in any other programming language) :
Code:
var httpClientHandler = new HttpClientHandler()
{
Proxy = new WebProxy("127.0.0.1:8080", false),
UseProxy = true
};
var client = new HttpClient(handler: httpClientHandler, disposeHandler: true);
var response = await client.GetAsync("https://www.instagram.com/instagram/?__a=1");
if ( response.Content.Headers.ContentType.MediaType == "application/json")
{
// Not detected proxy and good for Instagram
}
else
{
Detected proxy and not good for Instagram
}
Don't worry I know most of you not coders that code above provided for serious proxy providers want to improve the service for their clients and for junior bots coders... I made a simple online tool to test that here, it's part of my beta test here and in the next update the client desktop client will contain a similar IG proxy checker.. feel free to use any other tool test the same concept.
So now which proxy providers and which proxy type is good and not detected by Instagram?
in my tests, I found most of the data center proxies detected and not good for IG, while most of the rotating residential proxies including 4 g mobile proxies are good and not detected by Instagram.
@Saly Verona wrote an excellent article about the proxies type and why rotating residential including 4g mobile is good for social media.
I highly recommend reading it particularly if you are using automated tools.
BHW Proxy Marketplace full of sellers offers free trial test them before purchase.
If you have any questions/comments please reply in this thread and don't pm me it.