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.

When clicking the Facebook Like button on my site I want the user's browser to be taken to my Facebook page. Is this possible?

share|improve this question

1 Answer

up vote 0 down vote accepted

This is possible.

If you use the Javascript SDK to subscribe to facebook events http://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/

then you subscribe to the edge.create event and then fire some js to do this:

 FB.Event.subscribe('edge.create',
    function(response) {
        window.location = "http://facebook.com/mypage";
    }
);

Hope this helps

share|improve this answer
This is all new, shiny, exciting and to be honest, a bit voodoo to me, but it sounds like a good pointer for getting started. I may need to come back to iron out details... Many thanks. – Mike Higginbottom Apr 18 '12 at 19:34
Mike if you need a complete demo just ask and I can sort one for you. – Richard Apr 19 '12 at 13:53

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.