| Package | com.distriqt.extension.facebook.login.events |
| Class | public class FacebookLoginEvent |
| Inheritance | FacebookLoginEvent flash.events.Event |
| Property | Defined By | ||
|---|---|---|---|
| accessToken : AccessToken = null
The current user access token or null if one is not available
| FacebookLoginEvent | ||
| authToken : AuthenticationToken = null
AuthenticationToken used for a login attempt. | FacebookLoginEvent | ||
| profile : Profile = null
The current user profile, includes information about the user's name etc
or null if profile information is not available
| FacebookLoginEvent | ||
| Method | Defined By | ||
|---|---|---|---|
FacebookLoginEvent(type:String, accessToken:AccessToken = null, profile:Profile = null, authToken:AuthenticationToken = null, bubbles:Boolean = false, cancelable:Boolean = false) | FacebookLoginEvent | ||
clone():Event [override] | FacebookLoginEvent | ||
| Constant | Defined By | ||
|---|---|---|---|
| CANCEL : String = facebook:login:cancel [static]
The user cancelled the login process
| FacebookLoginEvent | ||
| SUCCESS : String = facebook:login:success [static]
Login was successful and the user is now logged in
| FacebookLoginEvent | ||
| accessToken | property |
public var accessToken:AccessToken = null
The current user access token or null if one is not available
| authToken | property |
public var authToken:AuthenticationToken = nullAuthenticationToken used for a login attempt. Can be used by a client to verify an authentication attempt.
| profile | property |
public var profile:Profile = null
The current user profile, includes information about the user's name etc
or null if profile information is not available
| FacebookLoginEvent | () | Constructor |
public function FacebookLoginEvent(type:String, accessToken:AccessToken = null, profile:Profile = null, authToken:AuthenticationToken = null, bubbles:Boolean = false, cancelable:Boolean = false)type:String | |
accessToken:AccessToken (default = null) | |
profile:Profile (default = null) | |
authToken:AuthenticationToken (default = null) | |
bubbles:Boolean (default = false) | |
cancelable:Boolean (default = false) |
| clone | () | method |
override public function clone():EventReturnsEvent |
| CANCEL | Constant |
public static const CANCEL:String = facebook:login:cancelThe user cancelled the login process
| SUCCESS | Constant |
public static const SUCCESS:String = facebook:login:successLogin was successful and the user is now logged in