how to bring back facebook friends using the same application ?

hi,

so i have a question, i want to bring back all the user friends on facebook that are using the same application

i have a facebook call that can bring back all the user friends (facebook.request( “me/friends” )) but the quesiton is how do i bring back all the users that are using the exaxt same app that i’m using … ?

There is a field you can request that Facebook include in the friends request.  I had an app that did this:

            local params = {                 fields = "name,username,first\_name,last\_name,picture,installed"             }             libFacebook.request("me/friends", "GET", params, onRequestComplete)

See the “,installed” in the fields list?

You can then look in the table of returned people and filter out people who don’t have the installed value.

Rob

There is a field you can request that Facebook include in the friends request.  I had an app that did this:

            local params = {                 fields = "name,username,first\_name,last\_name,picture,installed"             }             libFacebook.request("me/friends", "GET", params, onRequestComplete)

See the “,installed” in the fields list?

You can then look in the table of returned people and filter out people who don’t have the installed value.

Rob