Login Register


How To Create An Skype Resolver filter_list
Author
Message
How To Create An Skype Resolver #1
This Tutorial is created by MrPenguin.

- Introduction -
Welcome to our tutorial on how to create your own Skype Resolver, in this tutorial I’ll show you how to make your own web panel with a simple UI for your users or yourself privately to successfully and cleanly resolve Skype names, I won’t show you how to make the API on a VPS as that would be in a different tutorial but; I’ll provide you with one <3
– First Step -
Okay, so you will need this api here:
Code:
http://resolveme.org/api.php?key=5222c16e2b1b1&skypePseudo={$name}
Then, create an PHP file with the following code:
Code:
<?php $resolved = ''; if (isset($_POST['resolveBtn'])) { $name = $_POST['skypeName']; $resolved = @file_get_contents ("http://resolveme.org/api.php?key=5222c16e2b1b1&skypePseudo={$name}"); } ?> <form class="form" method="POST" action=""> <fieldset> <label>Skype Name</label> <input type="text" name="skypeName" value="<?php echo $name; ?>" id="skypeName"/> <?php echo $resolved;?> <input type="submit" value="Resolve" name="resolveBtn" class="dblueB logMeIn" /> </fieldset> </form>
– Second Step -
Once you’ve got your code, you’ll have to save it as index.php.
Upload it to your web server and simple you’re done!

Reply

RE: How To Create An Skype Resolver #2
Doesn't work, dear.
Most likely the API is banned or does not work anymore.

Reply

RE: How To Create An Skype Resolver #3
Your example is dead, 'cause the website was shutdown for various reasons. Skype has Updated automatically, so you need to update everytime once your API works.

About the code; It's very good and clean, maybe coding much more than a simple index.php?

Reply

RE: How To Create An Skype Resolver #4
But, but - don't use file_get_contents. It's slower than cURL and has a lot less features.

Reply

RE: How To Create An Skype Resolver #5
But, but - don't use file_get_contents. It's slower than cURL and has a lot less features.

Reply







Users browsing this thread: 1 Guest(s)