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.

Im currently working on a project that require to have fan like a page before he can see several content on the site.

The webpage is not an app in Facebook, it's outside facebook. We will not use PHP or backend code, we will only use FrontEnd

I have finished the user login check to check if user is logged in or not.

I am now stuck with the check if user is a fan of our page. I try to use the function page.IsFan, but somehow it needs to have an UID.

The FQL approach is not possible due to the same reason.

Also another problem is with the appID of our page. I try to google of how to get the appID for page, but the search is mixed up with useless contents.

Is there anyway to either get the UID or check if user liked ourpage without UID?

Thank you very much

share|improve this question
Do you need to fetch that information each time the page is loaded, or just catch the "like" event, as it happens? – Niklas Jul 5 '11 at 9:05
the page is only load once. So i do not need to worry about it. but some time there are return users, so I need to check if the user has already like the page or not somehow... – DucDigital Jul 5 '11 at 9:10

2 Answers

up vote 0 down vote accepted

You will have to use backend code from your Facebook iFrame fan page because you have to inspect the signed_request variable that is sent in the HTTP POST request to your page, as this variable won't be available via javascript, and subscribing to edge.create in javascript won't work because the page does a full refresh when the user clicks the like button and that event won't fire.

If you are forcing the user to authenticate with your app (which is not nessary if you inspected signed_request variable, you can use a FQL query or graph api request and instead of specifiying their user id, just use "me". something like: select field from table where uid = me()

share|improve this answer

Unless you provide a UID you won't be able to know whether the user has liked the page previously. However, you can use FB.Event.subscribe to find out when the user does like the item, by subscribing to the edge.create event:

FB.Event.subscribe('edge.create', function(response) {
    alert("liked the item");
});

example: http://jsfiddle.net/niklasvh/rmrE4/

share|improve this answer
Is there anyway to get the UID? – DucDigital Jul 5 '11 at 9:37
@DucDigital If they have logged in, then yes. You can get the UID with getLoginStatus in that case: developers.facebook.com/docs/reference/javascript/… – Niklas Jul 5 '11 at 9:39
I have use this function in my script, but mostly they have no response.session object. When i do a console log on the response. it gave me a NotConnected (those people who logged in but not connect to your app). It's a fan page, so how can I get the info about this? how can be authorize to get the users from a fan page? – DucDigital Jul 5 '11 at 9:49

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.