user1615362
user1615362

Reputation: 3817

Can Facebook Page and third party website share Likes?

I am trying to get my head around this FB API thing and I wonder if it is possible to share likes between FB page and a website.

For example: I have a website example.com that has a like social plug-in button on it, I also have a FB page(as recommended by FB, not sure why I need one) for example.com. What happens when the user clicks on like? Is it possible to interconnect these entities so that the likes don't get scattered?

Upvotes: 0

Views: 69

Answers (1)

Luis Fernández
Luis Fernández

Reputation: 70

You can change the Facebook like-button to a like-box containing the id of your page.

An example of this would be:

<div 
    class="fb-like-box" 
    data-href="http://www.facebook.com/example.comFB" data-width="300" 
    data-height="300" data-show-faces="true" 
    data-stream="true" data-header="true">
</div>

Upvotes: 1

Related Questions