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.

Is it possible with the Facebook OpenGraph's and API's to redirect user to a specific URL after he Likes a certain page?

share|improve this question

1 Answer

up vote 2 down vote accepted

It's possible.

rather than using a like social widget (which is the common way to like a page), you should implement your own button or link, which calls a Graph API method to like the page, then in use the api callback to navigate the user to a different url.

You can use facebook javascript SDK to call a Graph API method.

in this example:

FB.api(pageId +  '/likes', 'post' ,function(response) {
    //redirect the user to a page;
});

using "post" in the second parameter will like, using "delete" in the second param will "unlike"

share|improve this answer

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.