Please go through this : http://www.actionscript.org/resources/articles/926/1/Creating-Facebook-application-with-Flex/Page1.html
http://www.emanueleferonato.com/2009/11/11/creating-a-flash-facebook-application-with-the-facebook-actionscript-api-part-2/ Regards Virat -----Original Message----- From: skvsarathyourfriend [mailto:[email protected]] Sent: Wednesday, June 25, 2014 3:36 PM To: [email protected] Subject: To access and display friendlist in my app using Graph API 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. This message contains information that may be privileged or confidential and is the property of the Capgemini Group. It is intended only for the person to whom it is addressed. If you are not the intended recipient, you are not authorized to read, print, retain, copy, disseminate, distribute, or use this message or any part thereof. If you receive this message in error, please notify the sender immediately and delete all copies of this message.
