Sinisterly
[Deviation] Simple Skype Resolver - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Coding (https://sinister.ly/Forum-Coding)
+--- Forum: PHP (https://sinister.ly/Forum-PHP)
+--- Thread: [Deviation] Simple Skype Resolver (/Thread-Deviation-Simple-Skype-Resolver)

Pages: 1 2


[Deviation] Simple Skype Resolver - Fhoto - 08-19-2013

I've been working with Skype resolvers for a long time now, I've owned a few, been part of a few and sold a few. This is just a quick snippet for you's who want to learn. It's simple.

Nothing special.

NOTE: Remember to save your file as .php

1. Basic Page Layout
Code:
<html> <head> <title>Fhoto's Resolver</title> </head>

2. This is the forum where we enter our Skype Username
Code:
<form action="action" method="POST"> <input type="text" name="skypeusername" placeholder="Skype Username" > <input name="submit" type="submit" value="Resolve" "> </form>

3. This is a simple version of the cURL you would use, cURL makes your requests ms-1 faster.
PHP Code:
<?php if (isset($_POST['submit'])) { $name = $_POST['skypeusername']; $text = "'s IP:" $api = file_get_contents('http://www.speedresolve.com/skype.php?key=djdjjskdjksdj&name={$skypeusername}'); if($api == null); { die("ERROR: API is down."); } else { } echo $name $text $api; } ?>

4. Then add
Code:
</html>
- To end the page.




RE: [Deviation] Simple Skype Resolver - Cyan - 01-07-2014

Just wondering if this still works? Biggrin Thank you!


RE: [Deviation] Simple Skype Resolver - Adorapuff - 01-07-2014

(01-07-2014, 01:30 AM)Cyan Wrote: Just wondering if this still works? Biggrin Thank you!

Nope, but it could if you replace the API key with one that you have.


RE: [Deviation] Simple Skype Resolver - Cyan - 01-07-2014

(01-07-2014, 01:51 AM)Adorapuff Wrote: Nope, but it could if you replace the API key with one that you have.

Where would I get one? Biggrin
just wondering


RE: [Deviation] Simple Skype Resolver - Adorapuff - 01-07-2014

(01-07-2014, 02:04 AM)Cyan Wrote: Where would I get one? Biggrin
just wondering
From there website. Its like $4.50 for 500 API calls.


RE: [Deviation] Simple Skype Resolver - Cyan - 01-07-2014

(01-07-2014, 02:05 AM)Adorapuff Wrote: From there website. Its like $4.50 for 500 API calls.

What site? :L sorry I'm a noob at this shit Biggrin


RE: [Deviation] Simple Skype Resolver - Adorapuff - 01-07-2014

(01-07-2014, 02:44 AM)Cyan Wrote: What site? :L sorry I'm a noob at this shit Biggrin

The variable api contains the url
Code:
$api = file_get_contents('http://www.speedresolve.com/skype.php?key=djdjjskdjksdj&name={$skypeusername}');
so http://www.speedresolve.com is the site.
You can sign up, login, and buy some credits.
You only need to pay if you actually want to use this in a program. for personal use just use their homepage.


RE: [Deviation] Simple Skype Resolver - Cyan - 01-07-2014

(01-07-2014, 02:46 AM)Adorapuff Wrote: The variable api contains the url
Code:
$api = file_get_contents('http://www.speedresolve.com/skype.php?key=djdjjskdjksdj&name={$skypeusername}');
so http://www.speedresolve.com is the site.
You can sign up, login, and buy some credits.
You only need to pay if you actually want to use this in a program. for personal use just use their homepage.

Thank you so much man! Biggrin Much loved!


RE: [Deviation] Simple Skype Resolver - Sined - 01-07-2014

I wonder if we can spot the possible issues with this...


RE: [Deviation] Simple Skype Resolver - Cyan - 01-07-2014

Is there any way to make this into a VB scripted? Like if I wanted this in my program instead of a site. can someone help me.