facebook-comments

Will xid-based fb:comments be lost on June 1st?

无人久伴 提交于 2019-12-01 14:17:21
As far as I know there is no way to migrate existing Facebook comments which use fb:comments/xid over to the new fb:comments/href version. There are some StackOverflow topics ( How to migrate Facebook comments from using "URL" property to "HREF" , http://facebook.stackoverflow.com/q/8487357/138526 ) which supports this interpretation. Now Facebook says in their FBML documentation : Starting June 1, 2012 FBML apps will no longer work as all FBML endpoints will be removed According to the docs 'xid' is FBML, not XFBML. Does that mean all old comments will be gone forever? I got an official

Upload comments to particular post of facebook with object_id android

跟風遠走 提交于 2019-12-01 13:47:33
问题 Hello friends I want to post comment to particular post in facebook with my android app, below is my code- I Fetch All comments from URL which is below http://retirementhomeslisting.com/home-detail/canterbury-place-83 Bundle mBundle=new Bundle(); mBundle.putString("message","testing...1234555"); @SuppressWarnings("deprecation") Facebook fb=new Facebook(getResources().getString(R.string.fb_app_id)); try { fb.request("478409145610921/comments",mBundle,"POST"); } catch (FileNotFoundException e)

Will xid-based fb:comments be lost on June 1st?

白昼怎懂夜的黑 提交于 2019-12-01 12:08:37
问题 As far as I know there is no way to migrate existing Facebook comments which use fb:comments/xid over to the new fb:comments/href version. There are some StackOverflow topics ( How to migrate Facebook comments from using "URL" property to "HREF", http://facebook.stackoverflow.com/q/8487357/138526) which supports this interpretation. Now Facebook says in their FBML documentation: Starting June 1, 2012 FBML apps will no longer work as all FBML endpoints will be removed According to the docs

get list of all comments using url?

拈花ヽ惹草 提交于 2019-12-01 05:48:45
问题 I viewed this question before asking ,but it dint help. Facebook Graph API get all comments how can I get all comments from a url in facebook? I am trying to fetch all comments from two url. www.arrowlife.com?section=Destined-for-stardom www.arrowlife.com?section=section=The-Improviser What I have done: I url encoded the above urls and passed in the url like this:https://graph.facebook.com/www.arrowlife.com%3Fsection%3DDestined-for-stardom/comments Where am i going wrong? Just in case if you

Different Facebook comment box after each ajax call

人盡茶涼 提交于 2019-11-30 16:03:14
my problem is this: I've got a webpage that changes each time the user clicks the button. The title is updated, a graph. Seeing as the page now has different content, I would love to have a different commenting section. However, the url is exactly the same (because all of the content is ajax loaded) and so I'm wondering whether it is possible to have a new FB comment box be generated as well (it would need to be generated because there are hundreds of sets of content that the user can click through)? Thanks. Yes it is possible to generate a new comment box. After the AJAX call, you will need

Facebook Graph Api url comments and shares count doesn't work anymore

守給你的承諾、 提交于 2019-11-30 13:08:24
问题 I'm using the facebook comment plugin for my blog and until now, the facebook graph api helped me to retrieve the comment count of each post on my website. So, as I said, the posts that I've written like a month ago, I can retrieve the comment count using php and json_decode like this: $wsurl = 'http://www.example.com/title-of-the-post/'; $wsjson = json_decode(file_get_contents('https://graph.facebook.com/?ids='.$wsurl)); $cmcount = ($wsjson->$wsurl->comments) ? $wsjson->$wsurl->comments : 0;

Is it possible to use Facebooks Comments Plugin with Graph Object IDs/Graph URLs rather than www URLs?

雨燕双飞 提交于 2019-11-30 09:16:23
A little while ago, I built this: http://www.littlebray.co.uk/photos.aspx It's kind of an off-Facebook partial replica of a Facebook photo album gallery, the photos in the gallery section are all pulled from Facebook albums on the Page for Little Bray (fb.com/littlebray) enlarging them gives you a kinda full screen view of them with commenting facilties on the right margin, just like Facebook. You'll notice that, whilst this comment section looks a bit like a Facebook plugin, it isn't, and the reason for this is that if I used Facebooks Comments Plugin, when a user comments on a photo on the

Facebook Graph Api url comments and shares count doesn't work anymore

蹲街弑〆低调 提交于 2019-11-30 05:31:39
I'm using the facebook comment plugin for my blog and until now, the facebook graph api helped me to retrieve the comment count of each post on my website. So, as I said, the posts that I've written like a month ago, I can retrieve the comment count using php and json_decode like this: $wsurl = 'http://www.example.com/title-of-the-post/'; $wsjson = json_decode(file_get_contents('https://graph.facebook.com/?ids='.$wsurl)); $cmcount = ($wsjson->$wsurl->comments) ? $wsjson->$wsurl->comments : 0; Usually, it works cause the "comments" line show up. I don't know why, but now, every new post that I

Different Facebook comment box after each ajax call

岁酱吖の 提交于 2019-11-29 23:19:18
问题 my problem is this: I've got a webpage that changes each time the user clicks the button. The title is updated, a graph. Seeing as the page now has different content, I would love to have a different commenting section. However, the url is exactly the same (because all of the content is ajax loaded) and so I'm wondering whether it is possible to have a new FB comment box be generated as well (it would need to be generated because there are hundreds of sets of content that the user can click

Failed to render Facebook comments on Android WebView via local HTML

*爱你&永不变心* 提交于 2019-11-29 04:20:10
I have a simple activity that create a WebView to load Facebook Comments, e.g. protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); WebView myWebView = (WebView) findViewById(R.id.webView); WebSettings webSettings = myWebView.getSettings(); webSettings.setJavaScriptEnabled(true); // myWebView.loadUrl("http://192.168.0.2/facebook.html"); // See 1st image myWebView.loadUrl("file:///android_asset/facebook.html"); // See 2nd image } Only the call to remote html file work, but the local one does not work. See the following