facebook-sharer

Facebook Sharer - Title and summary Customization

╄→гoц情女王★ 提交于 2019-11-30 08:56:27
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="{{STATIC_URL}}img/ico_facebook_small.png" title="Facebook" alt="Facebook" ></a> and even adding: <meta

Sometimes the Facebook share dialog doesn't load on iOS

淺唱寂寞╮ 提交于 2019-11-30 05:17:25
问题 Sometimes when I launch the Facebook share dialog, the OS switches to the Facebook app, but the share dialog doesn't load. Then if you try again, it usually works. Why doesn't it work the first time? NSURL* url = [NSURL URLWithString:@"some URL"]; FBShareDialogParams* params = [[FBShareDialogParams alloc] init]; params.link = url; if ([FBDialogs canPresentShareDialogWithParams:params]) { [FBDialogs presentShareDialogWithLink:url handler:^(FBAppCall *call, NSDictionary *results, NSError *error

Is there a Facebook Share button event for FB.Event.subscribe?

馋奶兔 提交于 2019-11-30 04:13:05
I'm looking to split test clicks between the Facebook Like button and Facebook Share button. I know I can attach an event handler of FB.Event.subscribe('edge.create',...) to track clicks on the Facebook like button, but is there a corresponding event for the Facebook share button? There doesn't appear to be on in the FB.Event.subscribe documentation. There is no event for this - if you need to be notified when a user clicks shares from within your app, you should create your own share button and display the Feed/Share dialog when clicked: $('#shareButton').click(function() { FB.ui({ method:

“The post's links must direct to the application's connect or canvas URL” - error

寵の児 提交于 2019-11-29 21:27:21
问题 I am trying to post to user wall but I am receiving this error when when share window pops up: The post's links must direct to the application's connect or canvas URL Now, I made a proper Google search in hopes to find a solution, but the only one given was that I need to disable "Stream post URL security". I checked the advanced settings for my app and it is already set to disabled. So, by having a few years of experience with development on Facebook, and by knowing how incredibly bad the

Facebook Sharer not showing image thumbnail

南楼画角 提交于 2019-11-29 12:44:27
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 here&p[url]=http://example.com&p[images] [0]=http://www.ucmas.com/wp-content/uploads/2013/07/rm.jpg&p

Is there a Facebook Share button event for FB.Event.subscribe?

前提是你 提交于 2019-11-29 01:01:41
问题 I'm looking to split test clicks between the Facebook Like button and Facebook Share button. I know I can attach an event handler of FB.Event.subscribe('edge.create',...) to track clicks on the Facebook like button, but is there a corresponding event for the Facebook share button? There doesn't appear to be on in the FB.Event.subscribe documentation. 回答1: There is no event for this - if you need to be notified when a user clicks shares from within your app, you should create your own share

Facebook sharer.php, how to have multiple og:image tags? [duplicate]

北城以北 提交于 2019-11-28 19:19:36
Possible Duplicate: How does Facebook Sharer select Images? We are using Facebook's sharer.php service to share pages on our site. Right now this works great, but we are now having difficult trying to find out how to offer users more than one thumbnail to pick from (the sharer.php page offers a UI for multiple images, so it must be possible somehow). We have this meta tag currently: <meta property="og:image" content="http://www.mysite.com/myimage.jpg" /> We couldn't find anything suggesting how to do this. Does anybody have any ideas? Eddie I've been using multiple images for a while now. Use

single page application with angularjs and facebook share button

ぐ巨炮叔叔 提交于 2019-11-28 16:15:46
I follow this post to deploy facebook share botton in my app http://www.hyperarts.com/blog/tutorial-how-to-add-facebook-share-button-to-your-web-site-pages/ The first problem is I can not pass post.id , post.caption to facebook script. The second one is the link to every post on facebook wall link: ' link to every {{post.id}}' . If people click on a link shared on their wall, it should jum (AUTO SCROLL) to specific post on my site, this is single page so all post have the same link Thanks so much! This is my Angularjs controller: function MyController($scope) { $scope.posts = [{"title":

How to post Bitmap to facebook using facebook sdk?

Deadly 提交于 2019-11-28 11:15:37
问题 I don't find a correct solution to post an image to my facebook wall using facebook sdk. On stackOverflow I found the following solution but AsyncFacebookRunner and mAsyncRunner.request are deprecated and they don't work. private Facebook facebook; @SuppressWarnings("deprecation") public void shareImg(View v) { System.out.println("ciao"); Bitmap img = albero.getDrawingCache(); if (img != null) { byte[] data = null; Bitmap bi = img; ByteArrayOutputStream baos = new ByteArrayOutputStream(); bi

Branching the Android Share Intent extras depending on which method they choose to share

断了今生、忘了曾经 提交于 2019-11-28 08:25:51
Simply want to share a dynamic text string + the URL to the app. The native Android share intent is setup correctly, and works perfect with Twitter, Gmail, etc. But, as many will guess, it does not work with Facebook. Appearantly because Facebook will not accept text in the intent.EXTRA_TEXT field, only a single URL. Well, my question to y'all is: is there a way to branch off the share intent extras depending on which method they choose to share? for example, if they share via gmail or Twitter, use the existing String + URL (the desired option) EXTRA_TEXT , but if they choose to share via