fbml

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

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

Do most browsers support CSS for tags such as fb:like?

自古美人都是妖i 提交于 2019-12-01 10:50:44
Most browsers support tags such as <fb:like ... > </fb:like> (which is a Facebook XFBML tag). Is the namespace:tagname actually part of the standard of naming tags? Also, how about CSS support? Seldom do I directly style it like fb:like { font-size: 11px } but for people who are experienced with it, does it work with most modern browsers? (IE 6 too?) Is there any case where it doesn't work or even crash a browser? Probably some of the mobile browsers are not so well equipped to handle this. Browser handling for tags of the form namespace:tagname is very different in IE to other browsers and is

Do most browsers support CSS for tags such as fb:like?

試著忘記壹切 提交于 2019-12-01 09:10:57
问题 Most browsers support tags such as <fb:like ... > </fb:like> (which is a Facebook XFBML tag). Is the namespace:tagname actually part of the standard of naming tags? Also, how about CSS support? Seldom do I directly style it like fb:like { font-size: 11px } but for people who are experienced with it, does it work with most modern browsers? (IE 6 too?) Is there any case where it doesn't work or even crash a browser? Probably some of the mobile browsers are not so well equipped to handle this.

Is there a way to insert an @mention into a Facebook status update posted with pyfacebook?

倾然丶 夕夏残阳落幕 提交于 2019-11-30 16:14:21
问题 I have some code like the following in my application: message = "Hi, @John Doe!" postID = fb.stream.publish( message = loader.render_to_string('wall_post.phtml', {'message':message}), action_links = simplejson.dumps([{'text': "Check out blah", 'href': "http://blah.dev"}]), target_id = 'nf' ) Is there any way to represent a facebook @mention in the message string so that facebook converts it to a profile link for the mentioned user? 回答1: Mention it's partially available by open graph now. You

Is there a way to insert an @mention into a Facebook status update posted with pyfacebook?

不问归期 提交于 2019-11-30 15:42:36
I have some code like the following in my application: message = "Hi, @John Doe!" postID = fb.stream.publish( message = loader.render_to_string('wall_post.phtml', {'message':message}), action_links = simplejson.dumps([{'text': "Check out blah", 'href': "http://blah.dev"}]), target_id = 'nf' ) Is there any way to represent a facebook @mention in the message string so that facebook converts it to a profile link for the mentioned user? Korayem Mention it's partially available by open graph now. You can use only when posting an open graph ACTION Check: https://developers.facebook.com/docs

Showing popup in the new Facebook JavaScript SDK

做~自己de王妃 提交于 2019-11-30 13:31:49
问题 I used to have an href in my website. When users clicked on it, a multi-friend selector showed so they could invite their friends to my website. That was done using the following code: FB.ensureInit(function() { var dialog = new FB.UI.FBMLPopupDialog('XXXXXXX', ''); var fbml = 'Multi-Friend-Selector FBML' dialog.setFBMLContent(fbml); dialog.setContentWidth(620); dialog.setContentHeight(570); dialog.show(); }); Now, I'm using the new JavaScript SDK (http://connect.facebook.net/en_US/all.js),

Showing popup in the new Facebook JavaScript SDK

戏子无情 提交于 2019-11-30 07:43:09
I used to have an href in my website. When users clicked on it, a multi-friend selector showed so they could invite their friends to my website. That was done using the following code: FB.ensureInit(function() { var dialog = new FB.UI.FBMLPopupDialog('XXXXXXX', ''); var fbml = 'Multi-Friend-Selector FBML' dialog.setFBMLContent(fbml); dialog.setContentWidth(620); dialog.setContentHeight(570); dialog.show(); }); Now, I'm using the new JavaScript SDK ( http://connect.facebook.net/en_US/all.js ), but the old methods are not present... How can I do it with the new SDK? Raine Yes, finally got the

Facebook API's fb:registration returning “Invalid 'client_id'” when not connected to Facebook

∥☆過路亽.° 提交于 2019-11-29 14:27:40
I'm trying to use Facebook's registration tool for my website. I would like to allow Facebook users to login seamlessly to my website, but also non-Facebook users to create an account through that unified UI. I'm using the <fb:registration> tag for that purpose. If I'm already connected to Facebook when arriving to the page, everything works as expected (the form is prefilled with information from my Facebook account). But if I'm not connected to Facebook, the following error is displayed: Invalid 'client_id'. . What am I doing wrong? Thanks very much for your help. You'll find below the HTML

Facebook like box load event jquery

a 夏天 提交于 2019-11-28 09:46:58
问题 I have code like this. $(document).ready(function() { var highestCol = Math.max($('#main').children().height(),$('#main').children().height()); $('#main').children().height(highestCol); }); But this doesn't work when I have Like box in some column. It seems this called before Facebook like box called. How to fix this problem? Basically I need to call this process after facebook loads Like box and Recommendations blocks (both). 回答1: I think you can just put the like-button in a fix-height