facebook-like

Facebook Like button + Phonegap

梦想与她 提交于 2019-12-11 13:05:47
问题 I'm trying to use Facebook Like button in my Phonegap (HTML + JS) app, but it doesn't work. If I test it in the browser (local test), the button appears. But when I build it with Phonegap BUild and run it in my smartphone, the button is not showed. I'm using the code below: <div class="fb-like" data-href="https://www.facebook.com/pages/Save-Points/293951217439051" data-layout="standard" data-action="like" data-show-faces="true" data-share="true"></div> 回答1: The current way to implement the

FQL get liked artists

时光总嘲笑我的痴心妄想 提交于 2019-12-11 11:23:46
问题 Is it possible, using FQL, to get the liked artists(music) of a user? I check the permissions and I couldn't find anything related to it and I am not a facebook user so I am not sure if it's even possible. 回答1: The Like table doesn't give back the interests , but: An FQL table that returns the IDs of users who like a given object (video, note, link, photo, or album). That's not what we need. First way - Rapid description In the User table, you'll find a music field which sends back one line

Android facebook SDK - how to do a like?

核能气质少年 提交于 2019-12-11 11:14:49
问题 Does anybody know how to do a Like of a facebook page/personn by code ? Is it possible with the graph api ? how ? Can you give code example ? 回答1: @user370003, Would you mind providing more insight? The API does not have anything for this and your "Answer" is not much help as it stands. @Fabien, you can use a webview but the problem is if the user needs to login. you can also use: startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url))); That way it will launch a web browser and you can

facebook like button - do you know if web user likes your page [duplicate]

☆樱花仙子☆ 提交于 2019-12-11 10:36:29
问题 This question already has answers here : How can I check if the fb:like button is already pressed on my own page? (1 answer) How to check if a user likes my Facebook Page or URL using Facebook's API (5 answers) Closed 6 years ago . im bulding web app (sweepstakes), where user has to insert his data AND like one or maybe more facebook pages. Then he can continue and participate in sweepstakes. he cannot participate if he doesnt click on like button. So i have to know that user has clicked on

ref parameter on likes doesn't work

折月煮酒 提交于 2019-12-11 10:32:28
问题 What I am trying to do is track click throughs of individual users likes and shares. This is easy with a unique link or when using Like, using the ref parameter. What I do now is show the like button on a certain page, with the ref parameter set so I track any click through's on that link. But this has a problem or a bug, if you use ref and click the like button then ref will show up on the like post on fb and I can track this. BUT if you also leave a comment when you click the like button,

Application able to post on user's Wall

爷,独闯天下 提交于 2019-12-11 10:27:22
问题 I have a Fan Page and I need to post something on users Wall after clicking Like Button. Moreover I need to display different content for users who "Like" the page and for users who don't "Like" the page. Is there an application like "Static iFrame Tab" which already solves this? If not, then how to post something on users Wall? I downloaded the facebook.php file, but I haven't managed to find the required function there. 回答1: The user's 'like' status can relatively easily be returned by

iPhone / How to create a facebook-like application?

会有一股神秘感。 提交于 2019-12-11 08:03:31
问题 I want to create a Facebook-like application, with a menu like this : http://i.stack.imgur.com/yCyzF.png Is there a simple solution with iOS 6 SDK ? PS.: it would be only for iPhone (not iPad), and I don't need a search-bar. Thank you, 回答1: You can try ZUUIRevealController. Here is the link of GitHub and here is a simple tutorial on Youtube. 来源: https://stackoverflow.com/questions/12769371/iphone-how-to-create-a-facebook-like-application

Object Debugger and Graph API return different objects for same URL?… “Likes” plugin creates separate object?

南楼画角 提交于 2019-12-11 07:27:06
问题 I used the Open Graph to define a custom object that has a plethora of meta tags. When I use the Object Debugger / URL Linter (found here: https://developers.facebook.com/tools/debug) and input my page URL that has the appropriate meta tags, Facebook scrapes my page exactly as expected, returning an object with all my meta-data as well as a unique facebook ID. This is what the Object looks like: { "url": "http://mysite.com/8/the-dali-lama-returns", "type": "mysite:event", "title": "The Dali

drupal views facebook like button

亡梦爱人 提交于 2019-12-11 06:55:11
问题 I tried to add facebook like button to my veiws, which lists a particular node-type. I used views custom field module to add the iframe code. The problem is when I click like.. it shows Nikhil liked http://example.com/node/44 instead it should have shown Nikhil liked node title on example.com . Where am I going wrong. 回答1: Use Open Graph tags: http://developers.facebook.com/docs/reference/plugins/like 回答2: oK , well I was able to achieve the above feature by following methods: Created a cck

iOS, How to check whether the user likes a facebook page or not?

此生再无相见时 提交于 2019-12-11 05:50:18
问题 How to check whether the user likes a facebook page or not in an iPhone app? I know that I need "user_likes" permission. what else should be done? 回答1: Actually you can't like a page on Facebook. The best way to achieve that is to load the page inside a uiwebview and later you can check whether the user liked the page or not. 来源: https://stackoverflow.com/questions/15719701/ios-how-to-check-whether-the-user-likes-a-facebook-page-or-not