facebook-comments

Retrieve all comments with FQL by application ID

[亡魂溺海] 提交于 2019-12-11 04:39:33
问题 We use the facebook comment plugin to have comments on our site. To moderate those, we use this tool: https://developers.facebook.com/tools/comments However, we want to build our own tool to moderate those comments, and integrate it to our existing software. I can't find a proper way of doing this. the only way I found out now after hours of research is this FQL query: select post_fbid, fromid, object_id, text, time from comment where object_id in (select comments_fbid from link_stat where

New Facebook API fetching newsfeed and its comments

China☆狼群 提交于 2019-12-11 04:33:35
问题 is there a way to get newsfeed and its comments with the new changes facebook making on july, 2013 - https://developers.facebook.com/roadmap/ What im trying to do? i want to fetch latest newsfeed with comments (if any comments on it) with one api call , even if its group api call. Old Way of doing it: 1) fetching from stream table with comments field (comment field is deprecated now) 2) fetching from graph with comments field (which is removed also now) Quick Links new changes with quick doc:

Facebook Comments Stream in Google Maps Infowindow

隐身守侯 提交于 2019-12-11 03:29:35
问题 I’m currently working on a Google Maps project showing places of interest in my local town. My plan was to use multiple markers on the map to identify different places which when clicked on would open an InfoWindow listing more details about the place.... I also thought it would be good to allow visitors to leave comments and experiences using the Facebook Comments Plugin within the InfoWindow. However, on further research and reading a couple of other peoples efforts into trying to get

How do I change the singular/plural on “comment” to “comments” on Facebook's number of comments?

元气小坏坏 提交于 2019-12-10 20:19:28
问题 I would like my subtitles in my Wordpress blog to count the number of Facebook comments on my post. After inserting Facebook's code <span class="comment-count"> <fb:comments-count href="<?php echo get_permalink($post->ID); ?>"> </fb:comments-count> comments </span> I realise that when I only have 1 comment it prints "1 comments", in plural. What changes in the code do I need to do in order to: print "No comments" when no comments print "1 comment" in singular, when only one comment print "X

Facebook Comments - Synchronization between website and fan page

懵懂的女人 提交于 2019-12-10 12:45:42
问题 What's the best way to synchronize facebook comments between website articles and fan page. What I would like to achieve is : publish articles on website with fb comments as comments system users can comment this article through website users can comment this article through facebook fan page (for example after sharing link to this article) comments between website and fb are synced Currently I did everything what's written in docs and all I can do is comment article through website, but I

Facebook Comments Mirroring doesn't work

泪湿孤枕 提交于 2019-12-10 11:26:25
问题 Step by step i did these Create a new Facebook App (App ID: 544557495732050) Create a new Facebook Page (https://www.facebook.com/Pasha-electronic-502844156580479/) In App which created by step 1 check yes (Yes, mirror to page - which created on step 2) https://developers.facebook.com/tools/comments Create a new web page (which include javascript src and div tag) http://pasha-k.az/ramin/test.html Share this link on Facebook Page which created by step 2 https://www.facebook.com/Pasha

Identify Spam from fb:comments via FQL

江枫思渺然 提交于 2019-12-10 10:08:41
问题 I'm running an FQL query to get comments for a particular post made on a site. Is there a way to identify whether it has been marked as spam? If not, I can see that the blog owner removed some comments so that they are not visible on the site. Is there a away to identify which have been "hidden/deleted" by the blog owner? Thanks 回答1: I'm using the is_private attribute. It seems to be set to true when comment is marked as spam or deleted. 来源: https://stackoverflow.com/questions/8301801

Facebook Comments Plugin not displaying in AngularJS

天涯浪子 提交于 2019-12-10 09:53:16
问题 SEE UPDATE AT BOTTOM OF THIS POST I am trying to implement a Facebook comments box in an ng-repeat and am having issues with it displaying. In Chrome it doesn't display until I click the refresh button, whereas in IE10 I can not get it to display at all. My (simplified) index page: <!doctype html> <html lang="en" data-ng-app="eatsleepcode"> <head> <title data-ng-bind="pageTitle"><eat-sleep-code /></title> <meta charset="utf-8" /> <base href="/"> <link rel="stylesheet" href="/style/jquery-ui

Facebook iOS SDK 3.0: how to make comment to existing URL?

旧街凉风 提交于 2019-12-09 07:39:40
问题 Has anyone tried to use the new Facebook SDK to post a comment to an URL? i tried by using startForPostWithGraphPath like this (code snippet picked from Scrumptious project): id action = [FBGraphObject graphObject]; [action setValue:@"test from iOS app" forKey:@"message"]; // Create the request and post the action to my url path. [FBRequestConnection startForPostWithGraphPath:@"XXXXXXXXXXXXXXXXXXX/comments" graphObject:action completionHandler:^(FBRequestConnection *connection, id result,

Facebook : Like and Comment Functionality against Wall Post

江枫思渺然 提交于 2019-12-08 06:15:25
问题 I am displaying news feed on some other website say www.xyz.com using graph api. I have queries about below problems. I would like to give "Like" functionality for each news feed post. W would like to give "Comment" functionality for each news feed post. Can someone assist me how to solve this problem using either graph api or javascript sdk? 回答1: I would like to give "Like" functionality for each news feed post. This isn't possible, it must be natively within Facebook's site at facebook.com.