facebook-like

Facebook like button in iOS app using Facebook SDK

♀尐吖头ヾ 提交于 2019-12-08 05:33:41
问题 My application requires a "Like Us on Facebook" functionality.I tried to use Facebook SDK and the "FBLikecontrol" of the SDK.This is the code i tried: FBLikeControl *likeControl = [[FBLikeControl alloc] initWithFrame:CGRectMake(138, 270, 180, 40)]; [likeControl setObjectID:@"facebook page url"]; [likeControl setLikeControlStyle:FBLikeControlStyleStandard]; [[self view] addSubview:likeControl]; On running on the device(iOS7),when clicked on the like button,app redirects to the safari Facebook

Facebook like button is not working

懵懂的女人 提交于 2019-12-08 04:48:34
问题 I have 2 sites where Facebook like button is not working: http://www.mantrazdrowia.pl/przepisy/slodkosci/sernik-truskawkowy/ - I would like to like that url (tried to like it even from FB code generator - http://developers.facebook.com/docs/reference/plugins/like/ - no success) despite that its homepage: http://www.mantrazdrowia.pl/ can be liked just fine and same applies here: http://www.shopperhive.co.uk/blog and http://www.shopperhive.co.uk/ any help ? 回答1: If you go here, you should see

Facebook Open Graph protocol not working

心不动则不痛 提交于 2019-12-08 04:36:23
问题 Ok, i know there's a lot of posts on this topic and i have read through a lot of them; however, i have yet to be able to solve my problem. I am trying to add a Facebook like button to a website and use the Open Graph protocol to send specific information for the post that gets posted to the persons news feed that clicks the like button. This is the code blocks i am using on the site: HTML tag: <html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb=

Determine if a user is a Fan of MY page

核能气质少年 提交于 2019-12-08 04:28:19
问题 I'd like to determine whether a user is a fan of MY facebook page, without getting any Facebook-connect permissions from them first. Is this possible? 回答1: No, you must request and be granted access to a user's like data. One caveat to this - if a user has liked your page, this will be passed to any application tab on your page that the user visits. 回答2: 3 ways are available to check if user likes a or your page. ----------edit 11/19/2011 Signed Request - When a user selects your Page Tab,

How to manage 'Like' button for URLs that can change slightly?

谁都会走 提交于 2019-12-08 04:05:10
问题 I have a like button on each page in a wallpaper site. There is an option to edit the title of the wallpaper. Hence, the URL of the page changes as well, like it happens in Stack Overflow. In Stack Overflow, when the title of the question changes, the old URL is redirected permanently to the new URL. The same logic is implemented in my site. The problem is, say if there are 10 likes for a wallpaper page http://www.example.com/1/old-title-wallpaper If the title is changed slightly to 'new

how to avoid links to http://static.ak.facebook.com/connect/xd_arbiter.php hanging indefinitely [closed]

别来无恙 提交于 2019-12-08 02:51:40
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . We use Facebook comments and Facebook Like Buttons on our site. These somehow generate a call to http://static.ak.facebook.com/connect/xd_arbiter.php which never loads, leaving the impression that the page isn't loading. Is there a way to avoid having this script called? 回答1: Two ways, write to Facebook and

Do I need “offline_access” permission if I request publish_stream?

人盡茶涼 提交于 2019-12-08 01:16:13
问题 For Facebook, I requested email and publish_stream . I got their access_token. yay! Now....when I try to send a POST to their wall (/feed), I get this message: {"error":{"type":"OAuthException","message":"Error validating access token: Session has expired at unix time 1315342800. The current unix time is 1315363038."}} Why? Do I need offline_access? 回答1: No. From Facebook's documentation: Enables your app to post content, comments, and likes to a user's stream and to the streams of the user's

the the popup window (“flyout”) of a like button doesn't show up in a chrome extension

左心房为你撑大大i 提交于 2019-12-07 16:59:26
问题 i am trying to put a like button on a page in a chrome extension that i've developed. i use the simple XFBML version: <fb:like href="http://www.mydomain.com/page?param=1&otherparam=2" send="false" layout="standard" width="400" show_faces="false" font="arial" ref="chrome_notification"></fb:like> and of course i use the JavaScript SDK. when i upload this page into my webserver, everything works just fine. but when i run this page within my chrome extension, the like button itself works just

How to send the og:Title og:Image og:Description og:url info from C# to Facebook

那年仲夏 提交于 2019-12-07 14:21:03
问题 I have a like button in my page. On clicking the Button, I am trying to send the following tags information in the facebook... <meta property="og:title" content="Title" /> <meta property="og:description" content="Description" /> <meta property="og:url" content="url info" /> <meta property="og:image" content="image url" /> Following is my Like Button Frame <iframe frameborder="0" scrolling="no" allowtransparency="true" style="border: none; overflow: hidden; width: 260px; height: 35px;" src=

Facebook “like” button which likes another page/URL

北城余情 提交于 2019-12-07 12:04:00
问题 I have a list of links and on each individual page there's a "like" button to "like" that page. But I want a "like" button next to each link in the list which will like the URL of the link next to it (just like it would if you clicked on the link and then the "like" button). How do I do this? To create the button on each individual page I use the following code: <script> window.fbAsyncInit = function() { FB.init({appId: '*****', status: true, cookie: true, xfbml: true}); }; </script> <div