[HELP]Script for Instagram username checking needed

@OP pm me....i will give u a bulk IG username availability check tool
 
I have this tool, it is simple. If you need PM me for free.
Also, Im looking for email checker? ( the email taken by IG or not).
 
Guys i need a script that work in my website! no .exe file!
 
I am currently building my own website for my cpa campaign but i am unable to create a script in which IG username is given and it gives out if the username is there or not.

Much like https://www.instagramavailability.com

In used form here = http://getfreefollowers.website

Thanks!



If you are building a website and don't know how to code how to do a http request to pull a page and check for a 404, then now is the time to learn.

Go learn PHP. It is a nice simple script to start learning with.

Take a look at curl, but probably you could do it with file_get_contents, but learning curl would be better.
 
If you are building a website and don't know how to code how to do a http request to pull a page and check for a 404, then now is the time to learn.

Go learn PHP. It is a nice simple script to start learning with.

Take a look at curl, but probably you could do it with file_get_contents, but learning curl would be better.
I just completed my website which is coded fully in PHP but have zero idea regarding this! Only feature that is left is this username checking :(
 
I just completed my website which is coded fully in PHP but have zero idea regarding this! Only feature that is left is this username checking :(

Then it should be easy.

user makes a POST with the user
$un = $_POST['un'];

Check the formatting for username, @username, url and make sure is url format

make an HTTP request using curl to the URL.
Check the response, if is 404, the username is free, if not, then it is available.

If you coded the site in php,, then all you need to do is go read a CURL tutorial
 
Then it should be easy.

user makes a POST with the user
$un = $_POST['un'];

Check the formatting for username, @username, url and make sure is url format

make an HTTP request using curl to the URL.
Check the response, if is 404, the username is free, if not, then it is available.

If you coded the site in php,, then all you need to do is go read a CURL tutorial
Can I ask 1 question. Do you know the script can AUTO verify phone IG account like valar tools? I have SMS API key already..
 
Code:
function isFree($username) {
    return strpos(file_get_content('https://www.instagram.com/'.$username.'/'), 'Page Not Found') !== false;
}
 
Can I ask 1 question. Do you know the script can AUTO verify phone IG account like valar tools? I have SMS API key already..

That is the thing you either need to hire a developer for (check the freelance section of BHW) or learn to code so you can do it yourself. I doubt anyone is going to give you this
 
That is the thing you either need to hire a developer for (check the freelance section of BHW) or learn to code so you can do it yourself. I doubt anyone is going to give you this
Thank you for answer, pls me do
 
Back
Top