-
Notifications
You must be signed in to change notification settings - Fork 19
Issue #7: Added redeemGameKey method #8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Conversation
Revadike
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are other styling issues (using spaces, not tabs).
| }); | ||
| }; | ||
|
|
||
| SteamStore.prototype.redeemGameKey = function(code, callback) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| SteamStore.prototype.redeemGameKey = function(code, callback) { | |
| SteamStore.prototype.redeemSteamKey = function(code, callback) { |
or simply
| SteamStore.prototype.redeemGameKey = function(code, callback) { | |
| SteamStore.prototype.redeemKey = function(code, callback) { |
Steam keys don't only activate games, they activate any type of app. Technically, steam keys redeem steam packages.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or "product key" 🤔
| ### redeemGameKey(gameKey[, callback]) | ||
| - `gameKey` - The Steam game key you want to redeem |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
| ### redeemGameKey(gameKey[, callback]) | |
| - `gameKey` - The Steam game key you want to redeem | |
| ### redeemSteamKey(steamKey[, callback]) | |
| - `steamKey` - The Steam activation key you want to redeem |
or simply
| ### redeemGameKey(gameKey[, callback]) | |
| - `gameKey` - The Steam game key you want to redeem | |
| ### redeemKey(key[, callback]) | |
| - `key` - The Steam activation key you want to redeem |
Steam keys don't only activate games, they activate any type of app. Technically, steam keys redeem steam packages.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or "product key" 🤔
|
@DoctorMcKay Why wasn't this merged in some way? |
Adds redeemGameKey functionality described in #7.
Example usage: https://gist.github.com/saitho/a5466402b4bc1c7b2ec431c350f08567