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 a simple tab page, php sdk working and I know I can get the "like" for this specific page from the user signed_request.

This page is a colaboration with another company who also has an FB page. What i´d like to know is if I can get the like status of their page for the current user so I can authorize an action on this tab that is dependant of the user liking both my page and my partner´s.

Is this possible without using an actual app, an access_token and the appropriate perms requested?

e.g. my page is fb.com/Coke and my partner is fb.com/Target On this specific tab page I want to enable a button only if me (Coke) is liked (which I can get already) and if my partner (Target) is also liked.

I tried the graphAPI (me/likes) and FQL (using the connection table) and both compalin of an unauthorized request.

share|improve this question

1 Answer

up vote 0 down vote accepted

Short Answer:

No, this will not be possible in a production setting.

Further explanation:

Some users have their list of likes as public. In that case, it would work.

But in order to get likes from a user that has that setting as anything but public (such as myself, only friends of friends can see it), then it requires an app and an access_token that has a user_likes permission.

From the documentation:

Permissions Required:
user_likes permissions if querying the current user.
share|improve this answer
dang... thanks a bunch tommy. – ysal Dec 12 '12 at 13:01

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.