| Package | com.kongregate.air.standalone.steam |
| Interface | public interface ISteamAdapter |
| Implementors | SteamStandaloneAdapter |
| Property | Defined By | ||
|---|---|---|---|
| initialized : Boolean [read-only]
| ISteamAdapter | ||
| personaName : String [read-only]
| ISteamAdapter | ||
| steamID : String [read-only]
| ISteamAdapter | ||
| Method | Defined By | ||
|---|---|---|---|
getAuthSessionTicket(callback:Function):void
Get the AuthSessionTicket for the current user, and call the
callback when it is received. | ISteamAdapter | ||
| initialized | property |
initialized:Boolean [read-only]
public function get initialized():Boolean| personaName | property |
personaName:String [read-only]
public function get personaName():String| steamID | property |
steamID:String [read-only]
public function get steamID():String| getAuthSessionTicket | () | method |
public function getAuthSessionTicket(callback:Function):voidGet 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
|