Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have seen in flash game that it retrive user's friend in same application.How is possible.I searched the code but i have not found yet.Please help me . Thank you

share|improve this question

2 Answers

Why don't you use a query? Dowload the API for Facebook-Flash communication at this link http://code.google.com/p/facebook-actionscript-api/downloads/list . You can also see some example at the link above.

Once you have dowload the library, you are going to use it in your project. Then you can use:

Facebook.fqlQuery("SELECT uid,name FROM user WHERE uid IN (SELECT uid2 FROM friend WHERE uid1 ="+ IDutente +")",  function(res:Object,fail:Object)                          
{
if(res!=null){...do what you want...}
});
share|improve this answer

I would strongly suggest you start looking into this API, supported by Adobe and Facebook. You will need however Adobe AIR, and in some cases, Flex.

If I find more sources/ideas, I will edit.

share|improve this answer
ya sir, thank you for your answer, i have already read it but i could not implement it in my code. – RBADS Mar 19 '10 at 9:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.