Like Box with Recommendations feed - recommendation-engine

I want to use the like box or something to show the Recommendations given on my pages timeline. It shows comments on the wall as such but there appears to be no plugin to show any 'Recommendations' which is specifically prompted on the timeline. I looked at the recommendations box but that doesn't so what I would have imagined in this context

Related

Show facebook comments on site

Is it possible to mirror Facebook comments from my Facebook page on a post to my site using the comments plugin? I've been searching and cant really find anything regarding this subject. thanks
If all you need is to "mirror" that, then this is probably possible by using:
GET /{POST-ID}/comments?access_token=PAGE-ACCESS-TOKEN
However, if you are looking for a plugin, the nearest plugin for this is the Embedded Posts but that will only show the numbers of comments:
What do people see in Embedded Posts?
The embedded post will show any
media attached to it, as well as the number of likes, shares, and
comments that the post has. Embedding posts will let people using your
web site see the same rich information that is shown on Facebook.com,
and they will enable people to follow or like content authors or Pages
directly from the embed.

How to make a button in Facebook?

I need to make a Save button for each post in facebook(This has my own extension functionality).Have to place this in facebook just similar to Like,Share,Comment how i can achieve this?.
The Like button is a simple plugin that lets people quickly share content on Facebook.
Clicking a Like button on a site creates a connection in the graph between the content and the person who clicks the button. Clicking the Like button also publishes an Open Graph Like action, and displays stories on that person's timeline and their friends' news feeds. This story will link back to the site and drive distribution of content.
The story created by the Like action can be enriched by using meta tags to turn a simple HTML page into an Open Graph object. If you plan to use the Like button on any page on your website, you should follow the guide to including meta tags to ensure published stories look great in timeline and news feed and get the best possible distribution. Also read our best practices document on maximizing distribution for hints on how to improve interactions between your content and Facebook.
The Like button itself displays a count of all the likes and shares of the content and a few other metrics listed in the Frequently Asked Questions, below. An option to comment on the story appears when the Like button is clicked, if it is configured correctly. If someone comments after clicking Like, that gives the published story prominence in news feed.
You can use the configurator below to customize the layout and style of Like buttons and implement the plugin in minutes.

Posting link appear on my wall, but not my news feed

I'm attempting to post a link to my news feed, although currently it only appears on my wall. It does appear on the news feed of my friends which I want it to, it just doesn't show on my news feed.
I've tried posting to both me/feed and me/links
The fields I'm specifying are message and link, where message is just some text like "test" and link is the link to the page I'm trying to share.
I have gotten it to appear on my news feed a few times, but then on subsequent posts it no longer appeared. Does anyone have some information as to what may be happening or something to test out?
Maybe it's related to the change they made related to sharing. They inserted the concept of implicit/explicit sharing.
Please, have a look here

BUG: Recommendations Bar on same page as Facebook Comments

I have just added in the new Facebook Recommendations Bar (using the HTML5 version) to a number of blogs and realised that some of them aren't working. After a little digging I managed to pin it down to when I also have the Facebook Comments plugin on the same site. As soon as I comment that out it all works again.
The following is being logged in my console 'FB.getLoginStatus() called before calling FB.init()'.
None of these sites have anything on the front end we have developed that that use FB.getLoginStatus.
The Facebook comments plugin already places the Facebook Javascript SDK. I am guessing you are installing the Recommendations bar along with the Javascript - which means it appears twice on the page and therefore giving you this error.
Try adding the Recommendations bar WITHOUT the Javascript - that is, put only the bit on a page that has the Facebook comments plugin. It should then work fine.

Facebook comments box with comments from multiple urls

I am looking at replacing the comments on my news site with a facebook comments box. This would mean that every time someone posts a news article people can comment on it. This would require many comment boxes for many urls.
On the front page of my site however, I have a feed to all the comments that are posted all over the page. This makes is useful for people to see the discussion happening around the site.
Is there a way to show all the comments that are being posted on my site in one location if I move to facebook comments?
Essentially it would be a feed of all the comments from the different urls.
For each url you have, you would need to occasionaly pull the comments down using the Facebook Graph Comments API with a URL like: https://graph.facebook.com/comments/?ids=http://developers.facebook.com/docs/reference/plugins/comments. You would then need to build something to display this. There are no social plugins built for this.