-
Notifications
You must be signed in to change notification settings - Fork 103
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
added store module #22
Conversation
|
Which store does this implement? Main Steam store (games, DLC, etc.) or the marketplace? (cards, CS:GO skins, TF2 items, etc.) |
It's implement in-game purchases (without web purchase) . |
Do these actually go through somehow? How do you authorize a transaction without an authenticated Steam ID? (Or is the |
for my game I use authentication using the ticket:
where ticket is Ticket from GetAuthSessionTicket. (client)
|
from .core import APIConnection | ||
|
||
|
||
class SteamStore(object): |
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.
Since this is used for the in-game item stores, rename this to something more specific, like SteamIngameStore
. (I plan to add an API for the main store someday)
Ah, got it. I've added a few notes to fix-up; correct those and I'll merge this in! |
|
One last question: why is quantity & description specified with a |
excerpt from In-Game Purchasing Integration Guide
An order may have any number of Lineitem entries |
Merged in initial support for the Steamworks in-game micro-transactions store by @Derfirm.
Added interface for steam purchases.