How to post a facebook feed to my site

I have a website that allows a user to log in using their facebook login ID through the RPX system. When a user posts a comment on my site, I want him to automatically post a comment on his facebook wall. How to do it with Rails? I have been studying the facebooker plugin for a couple of days and still cannot figure out how to do this. Are there any simple ways to do this? I got the email address of the user and user ID from rpx and just want to post something on the news feed / wall, it's just that simple and it already caused me a headache how to solve this problem.

thank

+2
source share
2 answers

Ah, Facebook. You want some fun.

I'm not sure how RPX works. I know that he abstracts the details in order to support several social networks.

I got this working using standard Facebook Connect (not RPX). You need to set the user extension to status_update extended resolution . Once you get this, you can post status updates using Users.setStatus.

I recommend looking at the RPX documentation to see if they have something similar.

+3
source

If you create an RSS feed for each user, you can use Flog Blog , the Facebook RSS service. This is just a thought. Give it a try. can work...

+2
source

Source: https://habr.com/ru/post/1779937/


All Articles