Questions tagged [fbdialogs]

38 questions
8
votes
2 answers

Facebook Invite Friend Dialog app_non_users filter seems to have no effect

I am building a Facebook Application that sits in a facebook page tab (and has a Canvas URL hook.) I am trying to implement the app_non_users filter. When I introduce the filter, here is what I see: In both ['all'] and ['app_non_users'] everyone is…
Shreeni
  • 3,222
  • 7
  • 27
  • 39
6
votes
2 answers

How to authorize user through a DIALOG with the NEW Facebook Connect iOS API?

I understand - http://developers.facebook.com/docs/guides/mobile/#ios -, seems really useful, but my app won't support multitasking, so this "cross safari" method won't work for me. Is there a brief example somewhere (or can someone please copy…
Geri Borbás
  • 15,810
  • 18
  • 109
  • 172
4
votes
1 answer

Requests Dialog only works with Canvas-View?

I've some page-tabs for a few fanpages and there I'd like to integrate the RequestDialog. But unfortunately it always tries to redirect the friend, that got a request, to the canvas page. Is there a way to send the user to the page-tab, where his…
Jurik
  • 3,244
  • 1
  • 31
  • 52
4
votes
1 answer

Can I Use [FBDialogs presentOSIntegratedShareDialogModallyFrom] to post image to facebook via SDK 3.5?

When I use FBDialogs to post an image to facebook, facebook will show "via iOS" on the wall; How can I change "via iOS" to "via My App Name" using Facebook SDK 3.5? [FBDialogs presentOSIntegratedShareDialogModallyFrom:self …
AppoNLY
  • 41
  • 3
3
votes
0 answers

Share on iOS through Facebook App not working

Using FBDialogs and the the sample code from Facebook dev only works when you don't have the Facebook App installed. When I test on my device and I try to share, the app send me to Facebook App with the dialog box, aparently with all the information…
Gude
  • 305
  • 2
  • 13
3
votes
1 answer

iOS: Post on wall of Selected FB Friends

Scenario: I would want to share the post to the wall of only selected friends. Prerequisites followed: Out of the entire list of FB Friends, select only the necessary friends and create an Array Steps Tried: Trial 1: Use FBWebDialogs and call…
user1280350
3
votes
2 answers

Invite Friend Request using new Android SDK 3.0

I am using the new Facebook SDK 3.0 that just released on Android. I want to let the user invite his/her friends to the app. However, in the new SDK you do NOT create a new Facebook object with the App ID. You extend the FacebookActivity as given…
Bala
  • 115
  • 1
  • 2
  • 5
2
votes
0 answers

Post OpenGraph Story to Facebook with image

I am trying to post an OpenGraph story to Facebook on iOS. I have been following this tutorial. https://developers.facebook.com/docs/ios/open-graph/ I have also been refering to…
running-codebase
  • 998
  • 2
  • 12
  • 17
2
votes
3 answers

How [FBDialogs canPresentShareDialogWithParams:nil] works?

Does anyone make [FBDialogs canPresentShareDialogWithParams:nil] works properly ? It's always returning me NO. What should I put in params ? if ([FBDialogs canPresentShareDialogWithParams:nil]) { NSURL* url = [NSURL…
Daida
  • 23
  • 1
  • 3
2
votes
0 answers

IOS FBDialogs presentShareDialogWithLink Still Beta?

So I'm trying to use the native share dialog, and no matter what I do, I'm still getting this prompt back that the feature is in beta, and not currently available. I know this was the case, however this was suppose to have been removed from beta.…
2
votes
2 answers

FBDialogs presentShareDialog does not work in both 5.1 and 6.1

id action = (id)[FBGraphObject graphObject]; [action setObject:@"https://example.com/book/Snow-Crash.html" forKey:@"book"]; [FBDialogs presentShareDialogWithOpenGraphAction:action …
1
vote
2 answers

How can I add CSS to FB feed dialog?

I am new to facebook API. I've integrated feed dialog successfully. I want to add some CSS to feed dialog. How can I load a FB feed dialog in a DIV tag so that I can add some text above the FB dialog. (For ex: text like share it with your friends...…
S K
  • 177
  • 1
  • 2
  • 10
1
vote
0 answers

Adding a share link when using fbdialog to post to a users wall

I'm using FBConnect to post a link to a user's wall. I am using the FBDialog api instead of using graph paths: [facebook dialog:@"feed" andParams:_params andDelegate:_delegate]; Everything posts correctly except when the wall is viewed, there is…
Glasswing
  • 43
  • 1
  • 5
1
vote
1 answer

FB.ui feed post dialog changes

When a user posts a comment on one of our sites, we give them the option to send the comment to their facebook wall. i.e. the following code: FB.ui({ method: "stream.publish", attachment: { "name": "article title", "href":…
Mike Ruhlin
  • 3,546
  • 2
  • 21
  • 31
1
vote
0 answers

Facebook share: only a SMALL image shows on the web (LARGE in iOS app)

Using presentShareDialogWithLink or Open Graph or something else, (how) can one post a large thumbnail on the web without a login-session (i.e. with a fast-app-switch)? Namely, the official-snippet doesn't present a large thumbnail on the web (as…
Blaz
  • 3,548
  • 5
  • 26
  • 40
1
2 3