facebook-like

Facebook Like Button display's Switch and image

我只是一个虾纸丫 提交于 2019-12-12 04:12:32
问题 I have a problem with the Facebook Like button to where if a person is an admin of multiple pages / account, instead of the button displaying it shows a small box with a "Switch" link and the person's image. The same as explained here... http://developers.facebook.com/bugs/111826392293111/ I am using the default code provided by Facebook, not any special code. Any ideas or unfixable bug? 回答1: if you get the "switch link", than you're currently using facebook as a page and therefore can't

How to bypass opengraph tags for Facebook like buttons and use data-href instead

ぃ、小莉子 提交于 2019-12-12 03:58:01
问题 I have the javascript code with the fb-root div installed right after my <body> tag. There's a like button in the header of my website to like the website. But there's more buttons on the website, for every article. Sometimes there's more than one on the same page. So following facebook's docs instructions I added a data-href="" attribute to my fb-like tag. Didn't worked. Then I added a ref="" attribute with the article's slug inside it. Thought it would help. The button with both data-href

Same Facebook like button over multiple pages?

谁说胖子不能爱 提交于 2019-12-12 03:20:47
问题 What is considered the best method for 'like' buttons (same for twitter and google+) so that multiple pages use the same one? If i have an article spanned over several pages, it's giving each page a unique like button and i want it to be the same one. I'd also like to try an automated solution if you know of one. Using wordpress, I'm currently thinking of using a custom field to input the url directly, but that's not as automated as I'd like. What is the solution? Currently thinking this

Facebook Like Box plugin recently stopped showing the Stream

偶尔善良 提交于 2019-12-12 03:09:58
问题 On our site http://www.viva.org/learn.aspx the Like Box plugin has recently stopped showing the Stream. Even after generating new code via the developer site: https://www.facebook.com/plugins/likebox.php?href=https%3A%2F%2Fwww.facebook.com%2Fpages%2FViva-Learn%2F203492233024242&width=292&height=590&colorscheme=light&show_faces=true&border_color&stream=true&header=true&appId=8426528154 it still doesn't show! The fb page it's trying to share is: https://www.facebook.com/pages/Viva-Learn

Facebook like webpage button description

穿精又带淫゛_ 提交于 2019-12-12 02:55:26
问题 I see the webpage title, link, image, but I cannot get any description. My client want's a describing text when a user has clicked like on the webpage. Is this not possible?? I had to use the old way of sharing since the new doesn't work together with the other things on the site. I have ran it through the Facebook Debugger and the only problem it states is: Open Graph Warnings That Should Be Fixed: Parser Mismatched Metadata: The parser's result for this metadata did not match the input

Different like counts on url.com and www.url.com

可紊 提交于 2019-12-12 02:47:53
问题 I asked this question earlier on StackOverflow, but did not realise there was a facebook.stackoverflow.com. We're experiencing different like counts on our website whether we check www.url.com or just url.com. I'm afraid this question might be similar to this question since we had a normal Like button on our site first, and then decided to create an app for it in order to follow up and post updates to our fans. Is this a matter of "No, likes can't be merged" or have we missed something? Our

How to find how many POSTS (not page) has a user liked on my facebook profile

随声附和 提交于 2019-12-12 01:33:24
问题 Is there a way to find out (or generate a count) of how many posts has a user 'liked' on my facebook profile? For example, if I provide a userID, can I query that how many of the posts (on a particular facebook profile page) has this user liked? 回答1: You should be able to use FQL for that. The two FQL tables that are of interest here are: like - "returns the IDs of users who like a given object (video, note, link, photo, or album)" stream - "used to return a list of a stream posts" You can

Get Facebook Page Likes all at once in c#

冷暖自知 提交于 2019-12-12 00:29:06
问题 I want to get all fans basic data who likes my Facebook page. I have post a request to this URL(https://www.facebook.com/plugins/fan.php?connections=100&id=XXXXXXXXX) and i am getting response as 100 fans at a time randomly. I need all the fans at once or else 100 unique members at a time but not random. Is there any chance to get all 53k fans at a time. Can we use Graph API for this. Please help me. Thanks, Neer. 回答1: Sadly, there's no way you can access the list of your 53,000 fans through

Receiving notifications for the Facebook Like button on my website

[亡魂溺海] 提交于 2019-12-11 23:59:58
问题 I'm trying to receive Facebook notifications (within Facebook) when a user Likes a post on my blog - http://visualise.ca. I have the following code, the plugin works fine but I can't get notifications and I don't know what I'm doing wrong. Here is a sample of the code: <html lang="en"> <head> <meta charset=utf-8> <meta property="fb:admins" content="589865326" /> </head> <body> <div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=134951483245924&xfbml=1"></script

How do I determine the object that was liked by a user?

岁酱吖の 提交于 2019-12-11 23:52:42
问题 I'm doing a FQL query to get posts from a user: { "feeds": "SELECT type, actor_id, target_id, app_data, action_links, permalink, post_id, viewer_id, created_time, updated_time, source_id, message, description, attachment FROM stream WHERE filter_key = 'owner' AND source_id = <userId> AND is_hidden = 0 LIMIT 50" } For the most part, the results are great. However, if the result contains a post about the user "liking" something, how can I determine what was "liked"? For example: { "type": null,