vote up 6 vote down star
3

Currently I have my Facebook profile automatically republish blog posts from a WordPress instance.

What I would like to be able to do, however, is to also have comments posted to either the blog of Facebook show up on the other in the appropriate location.

Is there a way to do this with the Facebook API?

flag

That would be nice. I'd also settle for being able to disable the comments on the facebook side and direct people to my blog to comment. – Rob Boek Feb 9 at 22:34
that'd be cool, too :) – warren Feb 11 at 17:48
From what I can tell the plug-ins provided in the answers don't have the requested functionality. Is this the case? – Casebash Sep 25 at 11:20
Doesn't this belong on superuser? Look at: superuser.com/questions/12106/… – Casebash Sep 25 at 11:35
probably @Casebash - but SU didn't exist when I asked :) – warren Sep 25 at 16:46
show 1 more comment

3 Answers

vote up 2 vote down check

There's a bunch of facebook-connect enabled WordPress plugins that might help you achieve this. Here's a couple:

link|flag
Which of these two plugins was the accepted solution? – Casebash Sep 25 at 10:26
I'd like to know as well. – ripper234 Sep 27 at 8:17
I used the WP-Facebook-Connect plugin for a while, then decided I no longer wanted the integration :) – warren Sep 29 at 7:00
Why did you decide that? – Casebash Sep 30 at 2:09
more than not wanting the integration was stopping facebook from importing my blog - which was effectively the same thing – warren Oct 5 at 6:24
vote up 1 vote down

yoavf answer is good. A list including those plugins is maintained in Facebook's wiki: http://wiki.developers.facebook.com/index.php/Facebook_Connect_Plugin_Directory

http://dentedreality.com.au/2008/12/implementing-facebook-connect-on-wordpress-in-reality has a novel approach that isn't on that list.

link|flag
I read the dented reality post, but it didn't seem to solve the request problem – Casebash Sep 29 at 6:22
vote up 0 vote down

you need to go to the source of the blog, figure out how the comment form is posted (POST or GET) then you can use mock ajax documentation here. then inside the facebook app, you build a form similar to the one for the blog comment. make sure all the ids of the respective form elements are identical. then on your submit button you have a link like this.

<a  clickrewriteid="dummy" clickrewriteform="comment_form" 
clickrewriteurl="blog_form_action">Submit</a>

so dummy is the id of an element that will recieve any output.
comment_form is the id of the form that will be posted to the blog comment processor.
blog_form_action is the url in your blogs form action attribute.

if things work, the form comment_form will be posted to your blogs processor page so that the comment submitted from facebook will appear on the blog as well.

if the blog uses GET as its method, you just make sure that blog_form_action contains the query string

hope that helps!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.