facebook-like

Facebook Like Button For Email

丶灬走出姿态 提交于 2019-12-03 08:52:20
问题 Ok, so I've looked around a number of different websites but seem to get mixed information. Does anyone have any advice for implementing a Facebook Like button in an HTML email campaign? I have already tried this article but for some reason, clicking the like opens a blank page with another like button. http://emailexpert.org/adding-a-facebook-like-button-to-your-email-template/ Any help would be appreciated. 回答1: Here is how you can add a Facebook Like button, Share Button, and Tweet Buttons

Switching from HTTP to HTTPS, lost all Facebook “Likes” count

点点圈 提交于 2019-12-03 08:48:26
问题 I have one site switch to https://www.example.com since two months ago, and it loses all 'likes' count. Even I use the facebook fql query, it now has the same count between the http:// and https:/ Anyone knows whether it is a facebook bug? or there is a workaround solution for retrieving the old like counts? Great appreciation would be delivered for your help. 回答1: Typically Facebook likes are linked to a URL. Even a single character change will lose Facebook likes. Here is a link on Facebook

Don't display facebook like button for those who already liked it

筅森魡賤 提交于 2019-12-03 08:32:35
I want to display a Facebook like button for a page only for those who didn't like that page. So, when a user is already a fan of the page , the like button will not be shown. I did a lot of research and I found that I need to implement Facebook connect, and fetch the user_likes permission and check if the connected user has the page in his list. This is a working example http://www.fbrell.com/fb.api/does-like Basicaly, I need the code that will do this : When the user clicks on connect, the content will be changed and the Facebook like button will be shown if the connected user didn't like it

Is there a simple Facebook “Like” or share URL?

て烟熏妆下的殇ゞ 提交于 2019-12-03 08:09:23
Is there a simple URL string that Facebook will accept to "like" a site... or more accurately ( as a commenter points out below ), share a site? As a comparison, Twitter allows you to post from any page simply by pointing an anchor at a customized URL... like this: <a href="https://twitter.com/share?text=Check%20out%20this%20site:&url=http://example.com">Tweet this!</a> I can't seem to find anything in the Facebook documentation. Not exactly an answer, but close enough for me: http://www.facebook.com/sharer.php?u=http://mysite.com/ That'll do it. There is a non-depreciated equivalent to the

Facebook Like button showing 0 likes for ALL Facebook pages

一个人想着一个人 提交于 2019-12-03 06:44:24
UPDATE: So this is big. If you try to link to any facebook page with a like button it doesn't work. Try going to the Facebook like creation page (http://developers.facebook.com/docs/reference/plugins/like/) and entering the URL of any facebook like page (like Stackoverflow's: http://www.facebook.com/stackoverflowpage ). This code was working fine until earlier today and now I'm completely lost as to why it has stopped working. The like button loads, but you can't like it or send a message with it and the like count is 0 (it should be around 350). Here is the jsfiddle. It's very simple: http:/

placement of facebook like and google + buttons inline?

只谈情不闲聊 提交于 2019-12-03 06:25:12
Does anyone have any tricks to aligning these two buttons on a page? By default the iframe version of the facebook like button appears below the google plus button or vice versa. Are there any css tricks to keep them inline? This is my current attempt <div style="float:left;width:100px;"> <!-- Place this tag where you want the +1 button to render --> <g:plusone></g:plusone> <!-- Place this tag after the last plusone tag --> <script type="text/javascript"> (function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true; po.src = 'https://apis.google.com/js

iOS: Adding a Facebook Like button to a native iPhone app

社会主义新天地 提交于 2019-12-03 04:35:00
问题 I would like to know whether it is possible to add a Facebook Like button to a native iPhone app. In the app, the user browses a business directory or deals. When they tap on an item to view the details, it would be nice to have a Facebook Like button that can be used to post the item to the user's Facebook page. Facebook writes: "Currently, the Like button is only available in mobile web apps". My app is a native app and not a web app, so therefore I assume it's not possible. However, I do

What is the difference between a Facebook Page “Like” and an external URL “Like”? And will the “user_likes” permission scope give access to both?

心已入冬 提交于 2019-12-03 04:33:10
问题 I'd like to pull a list of all Facebook "Likes" for a user, whether they are Facebook pages or external URLs. Example: If you "Like" the Facebook Platform, I know I can see it via the /me/likes API call. However, if you like an external URL, I'm not sure how to pull that. Are both supposed to be pulled via the /me/likes call? Or is there another call to handle external likes ? Further, what about newsfeed / stream likes? For example, if I "Like" a photo, video, status or link that I see in my

How to detect Facebook Like button pressed and trigger event?

删除回忆录丶 提交于 2019-12-03 03:50:23
Here is the example: http://www.facebook.com/UEvents?v=app_4949752878&ref=ts These guys get people to click on Like button (in Step 1) first before letting the user download the video in Step 2. Interestingly, the Like button was detected and the page refreshed to show the blurred out image in Step 2 so user can click through to download. And it seems to remember that I click on Like (when I reload the page) so the Like button does not show any more and it just only shows Step 2. What is their trick of the trade? When a Facebook tab is loaded, the fb_sig_is_fan parameter is passed in

change the size of Facebook Like button

巧了我就是萌 提交于 2019-12-03 03:09:30
I used the below code to get the Like button of Facebook. Now the things is, I would like to change the size of the Like button that is rendered. I tried the width attribute which not not working at all. And I tried to override the CSS class that's used for the below code by facebook. But overriding the CSS class is also not working as well. So tell me how can I increase the height and width of the Like button. <div class="fb-like" data-href="http://www.xxxxx.com" data-send="true" data-width="450" data-show-faces="true"></div> Or you could target the iframe with CSS and scale it by using CSS3.