https://github.com/paralin/meteor-steamtracks
SteamTracks API implementation for Meteor.
https://github.com/paralin/meteor-steamtracks
Last synced: 2 months ago
JSON representation
SteamTracks API implementation for Meteor.
- Host: GitHub
- URL: https://github.com/paralin/meteor-steamtracks
- Owner: paralin
- License: mit
- Created: 2014-04-26T05:48:13.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-05-10T19:57:07.000Z (almost 12 years ago)
- Last Synced: 2025-03-10T22:48:38.299Z (12 months ago)
- Language: CoffeeScript
- Size: 203 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README

SteamTracks API implementation for Meteor.
Installing
----------
`mrt add steamtracks`
Create the Instance
------------------
`stracks = new SteamTracks "mykey", "mysecret"`
Available Methods
-----------------
### hashPayload(json)
Utility method, hashes the string json payload for sending to SteamTracks.
###sendRequest (method, params)
Executes a raw API request.
###listUsers(page)
List of all users using the app.
###userCount()
Count users in the app.
###userInfo(steamID)
Information about a single user
###userStates()
Number of users in each state.
###userGames()
Number of users playing each game.
###leavers()
List of users that have left the app (deauthorized it)
###flushLeavers()
Clear the leavers list
###changesSince(fromTime, fields)
User changes since a date.
###generateSignupToken(steamID)
Generate a signup token for a steamID
###ackSignupFinish(token, userID)
Acknowledge the signup finished.