I am trying to display my friends in a my app.
*
public var permissions:Array =
["user_birthday","read_stream","publish_stream","read_friendlists"];
*
i have gave the permissions to read the friendslist.
Here is some snippet of code to for this module.
*FacebookMobile.api("/me/friends",getFriendsHandler);
protected function
getFriendsHandler(friendsListResponse:Object,fail:Object):void
{
friendsArray.removeAll();
if(fail)
{
return
}
else
{
var friends:Array = friendsListResponse
as Array;
var len:uint = friends.length;
for(var i:uint=0;i<len;i++)
{
var obj:Object=friends[i];
friendsArray.addItem(obj);
}
}
}
</b>
I have declared a list to represent those friends in it.
*
<s:List id="frndsDataList" includeIn="FrndsList" height="100%"
dataProvider="{friendsArray}" labelField="name"></s:List>*
But it is not working.please help me out for this.
--
View this message in context:
http://apache-flex-users.2333346.n4.nabble.com/To-access-and-display-friendlist-in-my-app-using-Graph-API-tp6992.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.