facebook-sharer

Facebook 'like button' return X-Frame-Options Deny

谁都会走 提交于 2019-12-23 17:06:17
问题 I'm trying to put a facebook 'like button' on each post of a blog. The code was pasted correctly, but i'm getting this error: Refused to display 'https://www.facebook.com/undefined/plugins/like.php?action=recommend&app_id…%2F&layout=button_count&locale=pt_BR&sdk=joey&share=false&show_faces=false' in a frame because it set 'X-Frame-Options' to 'DENY'. There is a 'undefined' after facebook.com/, and i don't know why. Any idea how to solve this issue? 回答1: This is unfortunately a bug in how the

Facebook custom message sharing

雨燕双飞 提交于 2019-12-22 10:54:55
问题 I need to add a custom message when I hit on facebook share button on my website. By default the text says ("Say something about this..."). I would like to change this message to a custom message when when I hit the facebook share button. Is there a way I can do this with the sharer.php ? Like a parameter &t=customText ? 回答1: Right now, Facebook is not supporting the Sharer Functionality. Something that you can do: The title [title] that the Sharer is going to use is the actual of the url

Error parsing input URL, no data was scraped. only with new pages on my site

旧巷老猫 提交于 2019-12-22 08:16:12
问题 The problem i have is that i own a website where other people can post stuff ,creating new pages on my domain, but the problem that occured today is that all the new post pages created today are malfunctioning , sharing is not loading thumbnail picture and title and so on, but the weird this is that all the posts(new pages) created before today are all working fine What caused an error to occur out of nowhere? I also cannot debug any of the URL's of my website as the same error: Error parsing

How to implement share via option in android?

大兔子大兔子 提交于 2019-12-20 09:49:06
问题 I want to implement something like this. It should not be hard coded. If user haven't installed Dropbox there should not be a option to share via Dropbox. Thanks in advance ! 回答1: You can do the same by using: Intent i=new Intent(android.content.Intent.ACTION_SEND); i.setType("text/plain"); i.putExtra(android.content.Intent.EXTRA_SUBJECT,"Subject test"); i.putExtra(android.content.Intent.EXTRA_TEXT, "extra text that you want to put"); startActivity(Intent.createChooser(i,"Share via"));

Can't use facebook sharer.php custom parameters in mobile sites

三世轮回 提交于 2019-12-20 09:01:29
问题 I own a jQuery mobile website. There i using facebook share option with custom parameters to add title, description, image with link Like below, https://www.facebook.com/sharer/sharer.php?s=100&p%5Burl%5D=http%3A%2F%2Fgoogle%2F&p%5Bimages%5D%5B0%5D=https://www.google.com/images/srpr/logo3w.png&p%5Btitle%5D=My%20own%20title&p%5Bsummary%5D=My%20own%20description But when i try the same link to mobile, it will redirect to http://m.facebook.com/sharer.php?s=100&p%5Burl%5D=http%3A%2F%2Fgoogle%2F&p

Facebook Sharer - Title and summary Customization

只愿长相守 提交于 2019-12-18 13:04:06
问题 I'm working in a project with Django and I'm trying to share pages in facebook and twitter I have problems on facebook, I want to customize the Title and summary shared, to change the text when you share an Index Page and any other page. I tried using: <a href='http://www.facebook.com/sharer.php?s=100& p[title]=TITLE+TEST& p[summary]=summary& p[url]=http://{{ request.META.HTTP_HOST }}{{ request.path }}& p[images][0]=http://whatever.com/media/img/img_facebook.jpg' target="_blank"> <img src="{

Facebook Sharer not showing image thumbnail

半世苍凉 提交于 2019-12-18 07:13:23
问题 I have followed an example of Facebook share by using URL and parameters Original (working) Fiddle >> http://jsfiddle.net/dYfwK/ <a href="http://www.facebook.com/sharer.php?s= 100&p[title]=Title here&p[url]=http://example.com&p[images][0]=http://upload.wikimedia.org/wikipedia/commons/5/55/Kaasmarkt2_close.jpg&p[summary]=I love cheese" target="_blank">Test</a> Modified (image not appearing) Fiddle >> http://jsfiddle.net/dYfwK/6/ <a href="http://www.facebook.com/sharer.php?s= 100&p[title]=Title

Facebook share link without JavaScript

好久不见. 提交于 2019-12-17 17:19:10
问题 The following link is for sharing a page on Twitter: http://twitter.com/share Is there a similar option for Facebook that doesn't require JavaScript? I know about http://facebook.com/sharer.php, but that requires a get parameter to be inserted manually (which I'm not going to do), or with JavaScript (which doesn't fit my situation). 回答1: You could use <a href="https://www.facebook.com/sharer/sharer.php?u=#url" target="_blank">Share</a> Currently there is no sharing option without passing

Is there an API to force Facebook to scrape a page again?

谁都会走 提交于 2019-12-17 04:14:59
问题 I'm aware you can force update a page's cache by entering the URL on Facebook's debugger tool while been logged in as admin for that app/page: https://developers.facebook.com/tools/debug But what I need is a way to automatically call an API endpoint or something from our internal app whenever somebody from our Sales department updates the main image of one of our pages . It is not an option to ask thousands of sales people to login as an admin and manually update a page's cache whenever they

Facebook share The showing image is not the image set in og:image

ぃ、小莉子 提交于 2019-12-13 09:30:53
问题 In my PDP(product display page),i set og:image as my product image,however,in share facebook page,the sharing img is not what I expected in og:image Don't know why I have tried my URL:h ttp://www.halfords.com/cycling/helmets/kids-helmets/halfords-boys-bike-helmet-50-54cm in facebook debug page:h ttps://developers.facebook.com/tools/debug/og/object/ the below is the screenshot in facebook debug page. green arrow pointed is expected,however,it shows the red arrow pointed Thanks very much for