Packagecom.kongregate.air.standalone.steam
Interfacepublic interface ISteamAdapter
Implementors SteamStandaloneAdapter

An adapter for Steam SDK support. These functions must be implemented to allow the Kongregate SDK to get the information it needs from Steam. If you are using FRESteamWorks, an adapter is provided in the Support folder of the SDK distribution



Public Properties
 PropertyDefined By
  initialized : Boolean
[read-only]
ISteamAdapter
  personaName : String
[read-only]
ISteamAdapter
  steamID : String
[read-only]
ISteamAdapter
Public Methods
 MethodDefined By
  
getAuthSessionTicket(callback:Function):void
Get the AuthSessionTicket for the current user, and call the callback when it is received.
ISteamAdapter
Property Detail
initializedproperty
initialized:Boolean  [read-only]


Implementation
    public function get initialized():Boolean
personaNameproperty 
personaName:String  [read-only]


Implementation
    public function get personaName():String
steamIDproperty 
steamID:String  [read-only]


Implementation
    public function get steamID():String
Method Detail
getAuthSessionTicket()method
public function getAuthSessionTicket(callback:Function):void

Get the AuthSessionTicket for the current user, and call the callback when it is received. The callback should be invoked with ticket as a ByteArray or null if the request failed.

Parameters

callback:Function — with signature function(ticketRaw:ByteArray):void