facebook-like

refresh window after facebook like

早过忘川 提交于 2019-12-06 05:03:41
问题 I have created an app inside a company page to add more tabs/pages with a "like-gate" to ensure the user likes our page before moving forward. The like gate sits at a location say "index.php" if the user likes our page "index2.php" is included, in they do NOT like us "index1.php" is include instead. This all functions correctly. My problem is that I would like to include a "like" button inside the "index1.php" (if they dont like us) page. I included a button allowing the user to like us, but

Text-only version of Facebook's Like button?

跟風遠走 提交于 2019-12-06 04:23:12
问题 Does anybody feel the Facebook Like button is too intruding in ones UI? Like it doesn't fit in, like it's some cheap plastic thing? Have anybody ever used JS or something to make any alternatives like a plain text one? If so, has anybody ever done any A/B testing to see if it performs equally well to the original? Moreover, would this violate Facebook's TOS saying "You must not obscure or cover elements of our social plugins, such as the Like button or Like box plugin"? http://jsfiddle.net

Using social plugins for pre-existing Facebook posts

半腔热情 提交于 2019-12-06 04:12:33
If there a way to use the Facebook Feed, Comments, and Like social plugins for existing Facebook posts? We're looking for a way to have pages on our site supplementing existing Facebook posts made on our FB page. The goal is to keep all sharing, comments, and likes centralized around single post, rather than the usual model where each person shares a distinct post on their feed. Example post from McDonalds: http://www.facebook.com/photo.php?fbid=10151001277817014&set=a.10150319191897014.332821.50245567013&type=1 Ideally, we'd like to pull in the functionality of the above post (commenting,

Inserting facebook like button

送分小仙女□ 提交于 2019-12-06 04:10:28
Say I have a blogging site http://www.example.com using custom cms, and I want each content in the site to display a like button. I have been able to add a mod that inserts code snippets in each page, incliding the like code, but how do I go about differentiating the likes from each different post because as I recall, the facebook like code requires a src="http://www.example.com" , how do I make the src value unique for each page like src="http://www.example.com/news/a_news.php" . How do I achieve this...? refer below URL to generate like button for your page. http://developers.facebook.com

“Like” a Page using the Facebook Graph API, Objective C

假装没事ソ 提交于 2019-12-06 03:29:32
问题 I'm trying to allow the user of my iOS app to "Like" a page using the following code: NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"access_token",[[NSUserDefaults standardUserDefaults] objectForKey:@"fb_accessToken"], nil]; [facebook requestWithGraphPath:@"PAGE_ID/likes" andParams:params andHttpMethod:@"POST" andDelegate:self]; I get the error message: Error Domain=facebookErrDomain Code=10000 "The operation couldn’t be completed. (facebookErrDomain error

Can a test user 'LIKE' a brand page?

风流意气都作罢 提交于 2019-12-06 02:51:01
问题 I'm building an tab for a brand page, which I am testing via Cucumber/Selenium. I have created several test users in different states, but am hanging up on creating a test user who LIKEs my brand. When I visit my own brand page logged in as my real facebook user, I see a LIKE button. When I visit my brand page logged in as a test user, I do not see an option to LIKE the page. I have had no trouble creating or testing users who have given my tab/app permissions. All test users are associated

How to get mutual facebook likes between users who are using an app

戏子无情 提交于 2019-12-06 00:37:50
问题 Let's say two users are using an application and have granted the application appropriate permissions to retrieve their likes. Is it possible using FQL or the graph api to find what likes they have in common? Similar to how you can find mutualfriends between two users using the graph api. I don't think such an api call exists as I went through the docs but I may have missed it. I'd like to know if this is possible and if so, how it can be done. I really stink with SQL and just started with

Facebook Like button shows the “Confirm” link, but still cannot Like after confirming

≯℡__Kan透↙ 提交于 2019-12-05 23:19:55
问题 About 90% of the time, when I click on the Like button on my website, the confirm link shows up. When I click confirm, the popup appears and I click "Like". However, the confirm link is still there and my Like was not counted. I clicked confirm multiple times, but it still does not work. I refreshed the page many times, and about 10% of the time, the confirm link never shows up and I can Like it normally. I heard about the Facebook Linter (aka debugger). I "linted" my page and I still cannot

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

南笙酒味 提交于 2019-12-05 21:02:54
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 fine, but the comment popup doesn't show. in addition - i get these error masseges in the console: Unsafe

Facebook “like” button which likes another page/URL

[亡魂溺海] 提交于 2019-12-05 18:31:35
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 class="share_button btn_fb"> <fb:like layout="button_count" font="tahoma"></fb:like> </div> You can use