facebook-like

JS: Detect when user “clicks” the facebook like button

旧街凉风 提交于 2019-12-01 19:32:00
问题 Is it possible to detect when someone clicks the like button "and before the like action really occurs", i.e. same as onSubmit JS event, it detects when the user submit the form before it even get submitted, giving the ability to process/run some code before it do so. Usage: I am trying to implement a Web 2.0 page where all the action happens in one page, so depending on the user actions the content of the page would change "But not the meta" So my question is, can i detect when the user

Facebook object debugger: Could not retrieve data from URL. (200)

只愿长相守 提交于 2019-12-01 18:15:54
问题 When i use the object debugger, the scraper is not able to see my OG content on my page. The debugger says "Can't download: Could not retrieve data from URL.", even though it's a 200 OK and shows the correct fetched and canonical URL. I have a subdomain on it, and it work fine.So not sure what happen to my main domain. When click on Scraped URL See exactly what our scraper sees for your URL , it just show blank page. 回答1: Your site seems to have some HTML errors: http://validator.w3.org/check

Facebook object debugger: Could not retrieve data from URL. (200)

二次信任 提交于 2019-12-01 17:56:21
When i use the object debugger, the scraper is not able to see my OG content on my page. The debugger says "Can't download: Could not retrieve data from URL.", even though it's a 200 OK and shows the correct fetched and canonical URL. I have a subdomain on it, and it work fine.So not sure what happen to my main domain. When click on Scraped URL See exactly what our scraper sees for your URL , it just show blank page. Your site seems to have some HTML errors: http://validator.w3.org/check?uri=http%3A%2F%2Fspandooly.de You should fix them before attempting to validate your site. Funny thing, I

iOS 'like' facebook application page, how to do it? [duplicate]

非 Y 不嫁゛ 提交于 2019-12-01 17:08:06
Possible Duplicate: Like button in iOS application I'm trying to make it easier for a user of my App to 'Like' my facebook application. The scenario is, the user has already logged in and authorised my application, so I have the user's oauth token. Since the Graph API does not allow this, I've tried multiple other ways, all unsuccessfully. Methods: 1) Have it navigate to the facebook application's facebook page in a UIWebView 2) Make my App launch the Facebook App unto my facebook application's page. In method 1, the main issue is the user will in many cases have to login in the webview again,

iOS 'like' facebook application page, how to do it? [duplicate]

三世轮回 提交于 2019-12-01 16:37:20
问题 This question already has answers here : Closed 8 years ago . Possible Duplicate: Like button in iOS application I'm trying to make it easier for a user of my App to 'Like' my facebook application. The scenario is, the user has already logged in and authorised my application, so I have the user's oauth token. Since the Graph API does not allow this, I've tried multiple other ways, all unsuccessfully. Methods: 1) Have it navigate to the facebook application's facebook page in a UIWebView 2)

Check if someone likes page before submit on own website

半世苍凉 提交于 2019-12-01 14:50:27
I have a own page on my server where people can download a track of my own. My idea is to put a like button on that page to my Facebook page. People must first hit the like button, and after that they can download the track. Probably this must fix with a form with name, e-mail and the like button that they have to click! After submit, there must be something that will check if the user realy hit the like button before they get the page with the special content (download link) So the idea is if it is possible that there's a check that the page is liked before they can submit and get the

What's the difference between the Like button with or without Open Graph META tags?

妖精的绣舞 提交于 2019-12-01 14:40:45
I have a very basic website with the potential for having hundreds of pages, and would like to have a the Facebook Like button on each one. However, before I do it, I would like to know the difference between inserting the Like button with, or WITHOUT using Open Graph META tags. I don't want each page that visitors 'Like' to become their own Facebook pages, but I WOULD like their 'Like' to show up on their wall so their friends can see it. Is the only real reason for using Open Graph to specify what exactly it is that you want to show up in the message and 'Like' post?? (example: 'Dave likes

How to create a fan / like gate on Facebook?

六月ゝ 毕业季﹏ 提交于 2019-12-01 14:24:10
I am trying to create a simple fan/like gate. Where you specify one content for none fans and other content for fans (if they pressed the like button). However when I run the page in the page tab it does not return a signed request and thus there is no way for me to figure out how to do it. Can someone post a tutorial, or have a fix for this? At this point I got the following code: index.php <?php require dirname( __FILE__ ) . '/../api/facebook.php'; // Create our application instance // (replace this with your appId and secret). $facebook = new Facebook(array( 'appId' => '112458478872227',

Why is my Facebook Like button broken?

久未见 提交于 2019-12-01 14:21:43
I've seen a couple of problems similar to what I'm having, but none of the solutions I've seen work, including the Facebook lint tool. My Facebook-generated code, modulo an escape() of window.location, is presently commented out, and is in what is almost a bare JavaScript include: document.write('<iframe src="http://www.facebook.com/plugins/like.php?app_id=142676242492854&href=' + escape(url) + '&send=false&layout=standard&width=450&show_faces=true&action=like&colorscheme=light&font=verdana&height=80" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:167px; height:40px;

Check if someone likes page before submit on own website

£可爱£侵袭症+ 提交于 2019-12-01 13:30:21
问题 I have a own page on my server where people can download a track of my own. My idea is to put a like button on that page to my Facebook page. People must first hit the like button, and after that they can download the track. Probably this must fix with a form with name, e-mail and the like button that they have to click! After submit, there must be something that will check if the user realy hit the like button before they get the page with the special content (download link) So the idea is