Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yllanos/customurl2steamid64
VERY simple nodeJS module to get a user's steamID64 based on customURL. No API key needed
https://github.com/yllanos/customurl2steamid64
customurl javascript nodejs steam steam-web steamapi steamid64
Last synced: 17 days ago
JSON representation
VERY simple nodeJS module to get a user's steamID64 based on customURL. No API key needed
- Host: GitHub
- URL: https://github.com/yllanos/customurl2steamid64
- Owner: yllanos
- License: mit
- Created: 2016-03-15T18:04:03.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-08-16T12:43:10.000Z (over 8 years ago)
- Last Synced: 2023-12-09T16:00:44.407Z (about 1 year ago)
- Topics: customurl, javascript, nodejs, steam, steam-web, steamapi, steamid64
- Language: JavaScript
- Homepage:
- Size: 8.79 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# customurl2steamid64
VERY simple NodeJS module to get a user's steamID64 based on customURL. No API key needed.### What's this for?
This module will allow you to get the SteamID64 for any Steam player, as long as the target profile is public.### But why?
I couldn't find this utility for a project I'm working on, so I decided to write it myself and learn some NodeJS in the process.### Is this officially supported?
Not by Valve Software by any means. I'm just a fan. I'll try to support development of this library for as long as I can### Cloning
$ git clone https://github.com/yllanos/customurl2steamid64.git### Installing
Using [npm](https://www.npmjs.com/):$ npm install customurl2steamid64
### Testing
$ node test.js(You should get this number on your console):
76561198008252756You could also alter [this file](../blob/master/test.js) on variable 'username' to whatever Steam user you wish to test
### Integration example (steam-web)
Using the test file above as template, we are going to integrate with the [steam-web](https://www.npmjs.com/package/steam-web) library. Please update your code with your own API keyvar getSteamID64 = require('../lib/steamid64');
var steam = require('steam-web');var username = 'yllanos';
var baseURL = "http://steamcommunity.com/id/";
var URL = baseURL + username + "/?xml=1";var s = new steam({
apiKey: 'XXXXXXXXXXXXXXXX', // <<--PROVIDE API KEY HERE
format: 'json' //optional ['json', 'xml', 'vdf']
});/**
* Example implementing steam-web
* If you want to test a different user, just edit the 'username' variable as needed
* Don't forget to add your own Steam API key
* 'result' variable represents the value to be integrated into your application
* @param {string} URL - Full URL profile for specific user.
*/
getSteamID64(URL)
.then(function (result) {s.getPlayerSummaries({
steamids: [result],
callback: function(err, data) {
console.log(data["response"]["players"]);
}
})
})
.catch(function (reason) {
console.error("%s; %s", reason.error.message, reason.options.url);
console.log("%j", reason.response.statusCode);
return reason.error.message;
});When the code above is executed, you should get something like:
[ { steamid: '76561198008252756',
communityvisibilitystate: 3,
profilestate: 1,
personaname: 'Soyvideojuegos',
lastlogoff: 1458067862,
profileurl: 'http://steamcommunity.com/id/yllanos/',
avatar: 'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/36/3695d435209ad73d6ed0f720ac68f5c809a8e514.jpg',
avatarmedium: 'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/36/3695d435209ad73d6ed0f720ac68f5c809a8e514_medium.jpg',
avatarfull: 'https://steamcdn-a.akamaihd.net/steamcommunity/public/images/avatars/36/3695d435209ad73d6ed0f720ac68f5c809a8e514_full.jpg',
personastate: 0,
realname: 'Yamil Llanos',
primaryclanid: '103582791434470617',
timecreated: 1237920338,
personastateflags: 0,
loccountrycode: 'CO',
locstatecode: '04',
loccityid: 10644 } ]