![]() |
|
How To Create An Skype Resolver - Printable Version +- Sinisterly (https://sinister.ly) +-- Forum: Coding (https://sinister.ly/Forum-Coding) +--- Forum: PHP (https://sinister.ly/Forum-PHP) +--- Thread: How To Create An Skype Resolver (/Thread-How-To-Create-An-Skype-Resolver) |
How To Create An Skype Resolver - OverFloow - 06-07-2014
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! RE: How To Create An Skype Resolver - Spell - 07-10-2014 Doesn't work, dear. Most likely the API is banned or does not work anymore. RE: How To Create An Skype Resolver - Sir12 - 07-16-2014 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? RE: How To Create An Skype Resolver - CobraCode - 08-23-2014 But, but - don't use file_get_contents. It's slower than cURL and has a lot less features. RE: How To Create An Skype Resolver - CobraCode - 08-23-2014 But, but - don't use file_get_contents. It's slower than cURL and has a lot less features. |