I have a fan page at Facebook.
And I am wanted fans in it but i did not get lot of fans.
I need some one help that create the steps that will automatically add the peoples to my Facebook fan page.
How can I do it ?
No, this is neither possible nor allowed.
Related
I have Facebook comments social plugin integrated into my website. I was wondering if there is any way that user comments posted on my website would show up on out fan page as well? Something like User XYZ has commented on article ABC?
Sounds like custom functionality to me.
https://developers.facebook.com/docs/reference/plugins/comments/
How do I know when someone comments on my site?
You can subscribe to the 'comment.create' and 'comment.remove' events through FB.Event.subscribe.
And that process is here:
https://developers.facebook.com/docs/reference/javascript/FB.Event.subscribe/
Create an app publish an action, on behalf of the page (NOT the user). But here's the kicker: if they don't have control over the privacy of it, you probably shouldn't use their name on your page wall, at least not their full name.
Ideally this is what I would want:
I have a fb fan page with around 2000 likes. I also have a fb app by
which I can run social plugins on my website. I put up a like button
using the following code on my website: {fb:like
href="http://facebook.com/traveltriangle"}
I want to show Like button on my website such that if user clicks on
it, my fan page's 'like' increases. However I also want that for the
post that goes on user's timeline, it links to my website and not to my fan page.
How do I achieve this?
I am also fine if I change href in the fb:like code to point it to my website. However then the referral links are good, but I can not use those likes to post my users later.
I don't think you can use merge tam. Fb Fan page is one thing and Fb App is other thing. FB App helps you get user data from what I know from their database while Fan page helps you promote your business.
Why do you need to merge them?
I found several apps that allows us to add contact forms in a facebook FAN page.
But i couldnt find any that works on personal/people profile pages.
So, is there a way to add a form on my profile pages?
No, there's no API to include data into a user's profile page like this, thankfully.
I don't think you can do this in a personal page!
Can I add a Like button to a customer's website in order to link it to a personal Facebook page, not a professional/business Facebook page? When trying to do so, Facebook did not recognize a personal Facebook URL.
No, Likes are only for Pages, not personal profiles. You might consider a fb:subscribe button, though.
EDIT: I take that back, you can use a like button if you want. But the profile itself won't fans, since there are no fans of profiles; rather, the graph object tied to that profile will get likes.
You might also consider migrating to a page.
Yep, you can use the subscribe social plugin - similar to likes but for personal users.
See http://developers.facebook.com/docs/reference/plugins/subscribe/
I've seen a lot of questions on here asking how to publish to a Facebook fan page, but not how to publish from a Facebook fan page to an external site.
I'm admin of a fan page and would like to make updates for my audience from Facebook. These updates I'd like to appear on my website as well. Does anybody know of a way to do this?
You can pull feed messages in json format like so:
http://graph.facebook.com/17227611925/feed
Substitute 17227611925 with the id of your page.
You'd have to find/write a bit of code to do this. Do you already have some sort of server-side programming environment set up?