-
Notifications
You must be signed in to change notification settings - Fork 102
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) |
steamapi/store.py
Outdated
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.