Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to show the activity feed on my website only to those users that are logged in to their Facebook account. I was wondering if this was possible using Javascript or PHP.

To call the activity feed on the page, I'm using

< fb:activity site=SITE_URL app_id=APPLICATION_ID >

Thanks.

share|improve this question

1 Answer

If the option doesn't exist on the plugin, you will have to write your own.

However, you could get tricky, and just check their login status to your app via Javascript SDK's FB.getLoginStatus(), then insert the activity plugin into the page and then call FB.XFBML.parse().

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 22:48

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.