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.

What is the most current method to determine if a Facebook User has installed an application? I see that there is an "installed" field on the "permissions" connection of a user object, but that requires an access_token to test. What happened to isAppUser and why does this URL say the following:

Please use the Graph API User object and GET /[UID]?field=installed to check if a user is has TOSed that app.

The referenced /[UID]?field=installed does nothing.

share|improve this question

1 Answer

up vote 7 down vote accepted

This is working for me when asking for 'fields' - the docs appear to be referencing 'field' which I think is incorrect, I'll get it updated if that's the case:

e.g.

GET https://graph.facebook.com/me?fields=installed&access_token=<SNIPPED TOKEN>

Returns:

{
   "installed": true,
   "id": "<SNIPPED ID>"
}

A call to /me/permissions is probably what you want in most cases as this will also show the extended permissions granted to your app

share|improve this answer
1  
Update: this was a typo in the docs, i've updated it now. The correct parameter to retrieve specific of non-default fields (such as installed) is fields, not field – Igy Sep 6 '11 at 19:51
1  
Well, that explains it. Thanks for updating the docs. – typeoneerror Sep 6 '11 at 20:20
What if we want to know if the user has installed an app belonging to someone else? – Sweepster Dec 19 '11 at 8:44
I don't believe that information is available, and I can't think of a good reason for it to be available either – Igy Dec 19 '11 at 10:55

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.