Skip to main content
Version: 5.7.0

AttachSteamIdentity

Attach a Steam (steam ID + steam session ticket) identity to the current profile.

ServiceOperation
identityATTACH

Method Parameters

ParameterDescription
steamIdString representation of 64 bit steam id
sessionTicketThe player's session ticket (hex encoded)

Usage

http://localhost:3000
string steamId = "someId";
string sessionTicket = "someToken";

_bc.IdentityService.AttachSteamIdentity(
steamId,
sessionTicket,
SuccessCallback, FailureCallback);
JSON Response
{
"status": 200,
"data": null
}
Common Error Code

Status Codes

CodeNameDescription
40211DUPLICATE_IDENTITY_TYPEReturned when trying to attach an identity type that already exists for that profile. For instance you can have only one Steam identity for a profile.
40212MERGE_PROFILESReturned when trying to attach an identity type that would result in two profiles being merged into one (for instance an anonymous account and a Steam account).