Questions tagged [fbwebdialogs]
22 questions
7
votes
2 answers
Facebook iOS presentRequestsDialogModallyWithSession to return selected friends
I am developing an iOS app and I want to be able to send invitations to my app through facebook, which I managed to do using
presentRequestsDialogModallyWithSession
But I also want my app to know to whom the invitations were sent.. Is that…

user3370459
- 126
- 4
3
votes
1 answer
Facebook FB.ui send method not working on mobile web and need alternative
I am trying to allow users of my app to notify multiple Facebook friends that they need them to vote for their favorite item on a web page. I have been using the FB send method (https://developers.facebook.com/docs/reference/dialogs/send/) and it…

NateH
- 85
- 1
- 7
3
votes
0 answers
Restricting Facebook invite dialog to non-app users?
I am creating an iOS app where the user can invite their friends to use the app using Facebook SDK [FBWebDialogs presentRequestsDialogModallyWithSession:message:title:parameters:handler: method. However, I don't want to show the users that already…

Can Poyrazoğlu
- 33,241
- 48
- 191
- 389
2
votes
0 answers
Sending Invitation to Facebook Friends with Facebook SDK from IOS App
Here I am trying to invite Facebook friends from my app.
I followed this answer
It works fine with webDialog .But when I click on send button it gives
exception
WebKit discarded an uncaught exception in the
…

Sushil Sharma
- 2,321
- 3
- 29
- 49
2
votes
0 answers
After Facebook login in android app, unable to catch the active session in another activity
import com.beta.wow.SessionManager;
import com.facebook.FacebookException;
import com.facebook.FacebookOperationCanceledException;
import com.facebook.Session;
import com.facebook.Session.OpenRequest;
import com.facebook.SessionLoginBehavior;
import…

Worshiper
- 33
- 6
2
votes
1 answer
iOS Facebook SDK - Post to Friends wall with Privacy value set to SELF not being set
I want to set the privacy of the wall post on my friends wall to SELF.
so that only he can see it, i know it is possible because there is a property, but there is no where documented how to achieve…

David Raijmakers
- 1,369
- 1
- 16
- 40
2
votes
0 answers
Share UIImage using FBWebDialogs using Facebook SDK in ios 7
I am trying to share the local UIImage using FBWebDialogs. But I am getting any solution which will share the local image using FBWebDialogs. Can anybody tell me , how can I share local UIImage using FBWebDialogs ?
Note: My iOS app is totally…

iOSAppDev
- 2,755
- 4
- 39
- 77
2
votes
0 answers
Facebook API error code 110
have publish dialog and when I use it I have error on one my device.
This situation is only on my one phone...
Can You help me?
My code:
private void publishFeedDialog() {
Bundle params = new Bundle();
params.putString("name",…

Unmerciful
- 1,325
- 4
- 21
- 38
2
votes
0 answers
Facebook request is not sending on all devices?
I wrote code
- (void)sendRequest {
NSLog(@"SEND REQUEST ");
// Display the requests dialog
[FBWebDialogs
presentRequestsDialogModallyWithSession:nil
message:@"www.demoapp.com"
title:nil
parameters:nil
handler:^(FBWebDialogResult result,…

Duaan
- 609
- 1
- 13
- 29
1
vote
0 answers
Dismiss FBWebDialogs programmatically in ios
I have integrated the facebook SDK with version 3.17.1 in my application and I am not able to dismiss the FBWebDialogs programmatically, I have tried the solutions provided in this link:…

Brjv
- 1,054
- 1
- 8
- 24
1
vote
2 answers
Facebook SDK: not "opened" session state while creating WebDialog.FeedDialogBuilder
I faced to such a wierd bug while implementing Facebook share info.
I made all stages as they are described on Facebook tutorial Facebook tutorial - share info
but while I was trying to create example of WebDialog.feedDialog
private void…

Alex Zezekalo
- 1,031
- 2
- 17
- 34
1
vote
2 answers
How to pass multiple facebook Ids in presentFeedDialogModallyWithSession using FBWebDialogs?
How to pass multiple facebook Ids in presentFeedDialogModallyWithSession using FBWebDialogs?
NSMutableDictionary *params1 = [NSMutableDictionary dictionaryWithObjectsAndKeys:
FACEBOOK_APP_ID, @"app_id",
…

user40910
- 700
- 1
- 6
- 17
1
vote
1 answer
Adding friend through Facebook Dialog iPhone
I want to make a friend request in my app using the FBWebDialogs
and I tried implementing the solution given through here which is:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys: facebookUserId, @"id",…

jtubog
- 23
- 3
0
votes
1 answer
Not able to post on wall using [FBDialogs presentShareDialogWithParams] method
I am working on an existing project in which Facebook SDK 3.23.2 is used. I am trying to share data on FB wall by using the FBDialogs presentShareDialogWithParams method. Share dialog is opening but while posting data error status is coming & I am…

ravinder singh
- 33
- 5
0
votes
1 answer
Facebook iOS SDK user cookie issue in FBWebdialog
I am getting awkward issue in iOS app when I try to post on friend's wall using FBWebDialog
fbconnect://success?error_code=110&error_msg=Missing+user+cookie+%28to+validate+session+user%29
In which I am using stored access_token on server and…

techloverr
- 2,597
- 1
- 16
- 28