The Share dialog gives people the ability to publish an individual story to their timeline, a friend's timeline, a group, or in a private message on Messenger. This does not require Facebook Login or any extended permissions.
Questions tagged [fbsdksharedialog]
35 questions
1
vote
0 answers
How to share bitmap with text and url on facebook?
I tried different techniques but some one sharing only image on
facebook and some sharing only text or textwith url using SharePhoto
but no one sharing local image like bitmap,description and url at a
time.May be I am doing wrong.I am stuck…

humayoon siddique
- 710
- 7
- 29
1
vote
0 answers
Facebook Share is not working in android
FacebookCallback shareCallback = new FacebookCallback() {
@Override
public void onCancel() {
Log.d("cancled", "fb SHARE canceled");
}
…

AlgoMan
- 33
- 8
1
vote
0 answers
iOS9 FBSDKShareDialog native sharing not completes a post to facebook
I have an app written in Swift3 for iOS9 which attempts to share a custom link with image and description to facebook. The inter-app switching Plist keys are configured correctly - the user is asked for permission to open facebook, then a native…

Alex Stone
- 46,408
- 55
- 231
- 407
0
votes
0 answers
Facebook Share Dialog with Blob Data
Is there any way I can pass blob directly to facebook share dialog since I dont have any url. I have an image in the form of blob data which I want to post on facebook.
window.FB.ui({
display: 'popup',
method: 'share',
action_type:…

Techie123
- 1
- 2
0
votes
1 answer
Swift 5 IOS facebook share dialog, is not showing on my app
I have one week trying to show the shareDialog from facebook, but nothing works fine,
my button for login is working, my work in Android is working fine, but IOs is not working, I have install my SDK from Facebook, I put all the folders Bolt in to…

Edwin Ayala
- 1
- 4
0
votes
0 answers
Publish on facebook and twitter like instagram
I am making a social media app in react native where I want to add feature to publish the post on Facebook and Twitter same as in Instagram.
As I have gone through many articles and documentation it says that publish_actions has been deprecated and…

Mayank Raj
- 921
- 2
- 12
- 23
0
votes
1 answer
Standard ShareDialog can only send ShareLinkContent but not ShareMediaContent
While using standard ShareDialog the app can only send ShareLinkContent but not ShareMediaContent.
According to the description the app should send both.…
0
votes
1 answer
Facebook ShareDialog doesn't load after a WebView open
I am working on an android app which have local HTML pages to show in WebView and an option to share some content on Facebook using ShareDialog.
When ShareDialog is shown after a WebView loading started, It keeps loading and nothing happens. Even…

Randheer
- 984
- 6
- 24
0
votes
0 answers
Facebook Share Dialog Response Returning Nil for the Post ID
I'm trying to get the Facebook SDK up and running for my application, however, I've run into a problem. I've successfully gotten the sign in using Facebook functionality going, as well as the post functionality using the FacebookCore, FacebookShare,…
user6088080
0
votes
1 answer
Facebook Share Android
I am trying to share something to Facebook. It was working fine previously. Suddenly it stopped working.
Facebook dialog is not opening at all.
Below is the code am using
ShareDialog shareDialog = new ShareDialog((Activity) context);
if…

aeun
- 39
- 1
- 8
0
votes
0 answers
Android Facebook shareDialog & postId
Is it possible to use standard shareDialog from Facebook SDK and get back postId when 1. Facebook App installed, 2. Application doesn't review by Facebook?
All examples that I found suggest to use MODE=FEED. But with latest facebook SDK it doesn't…

w201
- 2,018
- 1
- 11
- 15
0
votes
0 answers
Android Facebook SDK & ShareDialog
Trying to publish photo in facebook with facebook sdk
SharePhoto photo = new SharePhoto.Builder()
.setBitmap(bmp)
.build();
SharePhotoContent content = new SharePhotoContent.Builder()
…

w201
- 2,018
- 1
- 11
- 15
0
votes
0 answers
Dynamic setting FB Sharer og:description
Hi I would like to do a page sharing of multiple item using fb sharer. But from what I understand is that I need to put the description and title on the meta tag. But what if I want it to be dynamic? Let say for example I click on an item and based…

MadzQuestioning
- 3,341
- 8
- 45
- 76
0
votes
1 answer
White space at og:image in facebook share
I have created a share_facebook function. When a user clicks the button, it will prompt them to log in to facebook and share our site. However, in the share dialog, there is a white space on the right that couldn't be eliminated. I am using the…

samlee32
- 31
- 4
0
votes
0 answers
How to add attachment on FB with sharer.php?
I'm trying figure if it possible to add attachment like (@facebookGroupPage) in a share dialog via SHARER.PHP,
tried to use quote=blablabla @page
but the attachment did NOT work.
BTW, with feed share i couldn't find if it possible too.

Daniel Shlenin
- 11
- 2