Επισκόπηση
Steamworks exposes multiple methods for authenticating a Steam user's identity and verifying ownership of an application. The following document describes each of these authentication methods used in the following scenarios:
Identifying a user within Steam
Every Steam user can be uniquely identified by a 64-bit numeric ID, known as the user's
Steam ID
. In the Steamworks C++ APIs, a user's SteamID is contained within a
CSteamID object. You can retrieve the current user's SteamID by calling
ISteamUser::GetSteamID and then retrieve the 64-bit ID by calling
CSteamID.ConvertToUint64()
on the returned value.
The following authentication methods can be used to securely verify a user's Steam ID.
APIs covered in this document
Session Tickets
Session Tickets are signed tickets that can be used to verify a user's identity between the user's game client and any number of other game clients (such as in a peer-to-peer multiplayer session) or to a listen/dedicated game server (using the
ISteamGameServer API). These tickets can also be used to verify ownership of the current game and related downloadable content, and determine if the user has been VAC-banned (See
Valve Anti-Cheat (VAC) and Game Bans).
Session Tickets can also be used to verify a user's identity between a game client and a secure, backend server using the
Steamworks Web API. Requires that the secure server can make HTTPS requests to
partner.steam-api.com
.
Encrypted Application Tickets
Encrypted Application Tickets can be used to verify a user's identity between a game client and a secure, backend server. Unlike Session Tickets, verifying Encrypted Application Tickets does
not require that the secure server can make HTTPS requests. Instead, a C++ library and a private, symmetric key are used by the secure server to verify the ticket. Το SDK του Steamworks περιλαμβάνει εκδόσεις 32-bit και 64-bit αυτής της συλλογής για Windows και Linux κάτω από το φάκελο
public/steam/lib
.
Πριν χρησιμοποιήσετε κρυπτογραφημένα δελτία εφαρμογής, πρέπει να δημιουργήσετε ένα ιδιωτικό κλειδί για κάθε τίτλο. Μπορείτε να το κάνετε αυτό μεταβαίνοντας στην «Επεξεργασία ρυθμίσεων Steamworks» για την εφαρμογή σας και επιλέγοντας το «SDK Auth» από το αναπτυσσόμενο μενού «Ασφάλεια». Αυτό το κλειδί θα είναι συσχετισμένο με το ID εφαρμογής του τίτλου σας και με κάθε λήψιμο περιεχόμενο για αυτόν τον τίτλο. Προκειμένου ένας χρήστης να έχει πρόσβαση σε αυτήν την ενότητα του Steamworks, πρέπει να έχει την άδεια για "Διαχείριση υπογραφών" για τη σχετική εφαρμογή.
ΣΗΜΕΙΩΣΗ: Αυτά τα κλειδιά πρέπει να αποθηκευτούν με ασφάλεια και δεν πρέπει να διαμοιραστούν μέσα στην εφαρμογή σας με οποιοδήποτε τρόπο!
Steamworks Web API
Steam exposes an HTTP based Web API which can be used to access many Steamworks features. The API contains public methods that can be accessed from any application capable of making an HTTP request, such as game client or server. The API also contains protected methods that require authentication and are intended to be accessed from trusted back-end applications. More details on the Web API can be found
here.
P2P or Game Servers
Session Tickets
User Authentication
The following steps detail how to use Session Tickets to verify a user's identity between the user's game client (client A) and another client or game server (client B):
A few important notes about Session Tickets:
Ownership Verification
When using Session Tickets, Steam will automatically verify ownership of the current AppID. If the user does not own the current AppID, then
m_eAuthSessionResponse
field of the
ISteamUser::ValidateAuthTicketResponse_t will be set to
k_EAuthSessionResponseNoLicenseOrExpired. After receiving a user's Session Ticket and passing it to
ISteamUser::BeginAuthSession then,
ISteamUser::UserHasLicenseForApp can be used to determine if the user owns a specific piece of downloadable content.
Backend Server
Session Tickets and the Steamworks Web API
User Authentication
The following steps detail how to use Session Tickets to verify a user's identity between the user's game client and a secure server:
Ownership Verification
Once a user's identity has been verified, a secure server can use the
ISteamUser/CheckAppOwnership Web API method to check if the user owns a particular AppID, or call
ISteamUser/GetPublisherAppOwnership to retrieve a list of all user owned AppIDs that are associated with the provided
Publisher Key.
Encrypted Application Tickets
User Authentication
The following steps detail how to use Encrypted Application Tickets to verify a user's identity between the user's game client and a secure server:
An example implementation can be found in the
Steamworks API Example Application (SpaceWar) project in the SDK. Specifically
CSpaceWarClient::RetrieveEncryptedAppTicket
and
CSpaceWarClient::OnRequestEncryptedAppTicket
.
Ownership Verification
Steam will only create Encrypted Application Tickets for users who own the AppID for which the ticket was created. After decrypting an Encrypted Application Ticket, the secure server can use
SteamEncryptedAppTicket::BIsTicketForApp to verify the AppID of the ticket matches the title's AppID. The server can also use
SteamEncryptedAppTicket::BUserOwnsAppInTicket to determine if the user owns a specific piece of
Downloadable Content (DLC).
Web Browser based authentication with OpenID
Steam is an
OpenID Provider, as described in the OpenID 2.0 specification. Inside a web browser, a third-party website can use OpenID to obtain a user's SteamID which can be used as the login credentials for the 3rd party website, or linked to an existing account on that website.
When using OpenID, the user begins in a web browser at the third-party website. When the user wishes to login/link their account to that website, using OpenID, the site directs the user to a login form on the Steam Community website. Once the user has entered their Steam login credentials, the user's web browser is automatically redirected back to the 3rd party website with some additional OpenID specific data appended to the return URL. The site's OpenID library can then use this data to verify and obtain the user's SteamID.
Steam provides the following images which may be used by 3rd party sites when linking to the Steam sign in page:
User Authentication
Steam's OpenID 2.0 implementation can be used to link a users Steam account to their account on the third-party website.
A list of open source OpenID libraries can be found at the
OpenID website. To use OpenID to verify a user's identity:
- Configure your OpenID library to use the following URL as Steam's OP Endpoint URL:
https://steamcommunity.com/openid/
- After a user has been authenticated, the user's Claimed ID will contain the user's SteamID. The Steam Claimed ID format is:
http://steamcommunity.com/openid/id/<steamid>
.
Ownership Verification
Once a user's identity has been verified, a secure server can use the
ISteamUser/CheckAppOwnership Web API method to check if the user owns a particular AppID, or call
ISteamUser/GetPublisherAppOwnership to retrieve a list of all user owned AppIDs that are associated with the provided
Web API Publisher Key.
Examples
Linking third-party accounts to Steam accounts
Third-party accounts can be linked to Steam accounts by associating a user's SteamID with the 3rd party account.
A user's SteamID can be securely retrieved either in-game or through a web browser and once the initial association has occurred, you can safely allow access to the 3rd party account by merely verifying a user's SteamID. This eliminates the need for Steam users to do any sort of secondary login to 3rd party account systems. Additionally, if new 3rd party accounts can be automatically created and linked when a new SteamID is encountered, the Steam user will never have to be aware that a secondary authentication is taking place at all. Instead, their single Steam account can grant access to all of their games, streamlining the user experience and removing potential barriers to installing and trying new games.
Linking From In-game
Session Tickets can be used to verify a user's identity between a game client and a secure, backend server using the Steamworks Web API:
Linking From a Web Browser
Steam supports the OpenID 2.0 specification so that you can allow users to securly log into their Steam accounts from your website and retrieve their SteamID. For details on how to use OpenID with Steam go to
Using OpenIDOwnership Verification
Once a user's identity has been verified, a secure server can use the
ISteamUser/CheckAppOwnership Web API method to check if the user owns a particular AppID, or call
ISteamUser/GetPublisherAppOwnership to retrieve a list of all user owned AppIDs that are associated with the provided
Web API Publisher Key.
Migrating from Third-Party CD Keys to native Steam Ownership Checks
Steam itself has a number of ways a title can authenticate a user with, removing the need for a third-party CD key. We've compiled a list of common use cases for CD Keys and how you might implement each case natively with Steam:
Private Forum Access
You'll want to have users login directly with their Steam account using OpenID. OpenID will return the user's 64bit SteamID which can then be used with
ISteamUser/CheckAppOwnership to verify the user owns your appid. More details can be found above at
Linking 3rd party accounts to Steam accounts.
Unlocking a non-Steam, DRM-free build of a game
Use OpenID and
ISteamUser/CheckAppOwnership (
documented above) to unlock the content on your own site. Alternatively, you could upload the DRM-free build as optional, free DLC.
The software is sold on my own web site and unlocks with a key
You'll want to have users login directly with their Steam account using OpenID. OpenID will return the user's 64bit SteamID which can then be used with
ISteamUser/CheckAppOwnership to verify the user owns your appid. More details can be found in
Linking third-party accounts to Steam accounts above.
Dropping in-game items for registering your third-party key
If you are using the
Steam Inventory Service, make sure the item's itemdef is configured correctly as a promo item and call
ISteamInventory::AddPromoItem from the client.
If you have your own item backend, you can call
ISteamUser::GetAuthSessionTicket from the game client and then use
ISteamUserAuth/AuthenticateUserTicket with
ISteamUser/CheckAppOwnership to verify ownership.
More Information...The key controls which version of the software is unlocked
Each version of your game should have its own AppID. From the game client, call
ISteamUser::GetAuthSessionTicket and then use
ISteamUserAuth/AuthenticateUserTicket with
ISteamUser/CheckAppOwnership to verify ownership.
More Information...