Packagecom.marpies.ane.facebook.data
Classpublic class ExtendedUserProfile
InheritanceExtendedUserProfile Inheritance BasicUserProfile Inheritance Object

Provides access to additional user's properties. This profile needs to be explicitly requested using AIRFacebook.requestExtendedUserProfile(). The properties you wish to obtain must be specified using the fields parameter, though their availability is subject to granted permissions, e.g. birthday info.



Public Properties
 PropertyDefined By
 InheritedfirstName : String
[read-only] User's first name.
BasicUserProfile
 Inheritedid : String
[read-only] User's ID.
BasicUserProfile
 InheritedlastName : String
[read-only] User's last name.
BasicUserProfile
 InheritedlinkURI : String
[read-only] Link to user's Facebook profile.
BasicUserProfile
 InheritedmiddleName : String
[read-only] User's middle name.
BasicUserProfile
 Inheritedname : String
[read-only] User's full name.
BasicUserProfile
Public Methods
 MethodDefined By
  
getProperty(property:String):Object
Allows you to access user properties which are not part of BasicUserProfile by default.
ExtendedUserProfile
Method Detail
getProperty()method
public function getProperty(property:String):Object

Allows you to access user properties which are not part of BasicUserProfile by default. Only the properties that were specified in the fields parameter of AIRFacebook.requestExtendedUserProfile() and for which your application has permission to read are available.

Parameters

property:String — Name of property to retrieve, e.g. birthday or gender.

Returns
Object — Value associated with the property if available, null otherwise. Return value is String for most properties. For properties like hometown and picture the returned value is Object (JSON).