Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
The fbdialogs tag has no wiki summary.
0
votes
0answers
2 views
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]) {
...
0
votes
0answers
40 views
Can't post story to Facebook
I'm using the latest SDK and trying to post a story to facebook, but for some reason it doesnt work. It's only working when I try to post with this code:
NSMutableDictionary<FBGraphObject> ...
-1
votes
0answers
27 views
FBDialog Customization in iOS
Can we customise FBDialog in iOS (as asked in this post) or is there a way to hide post (description in FBDialog) so that user can only enter his message before posting to Facebook. When user taps on ...
1
vote
0answers
106 views
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 ...
0
votes
0answers
84 views
FBDialogs presentShareDialog does not work in both 5.1 and 6.1
id<FBOpenGraphAction> action = (id<FBOpenGraphAction>)[FBGraphObject graphObject];
[action setObject:@"https://example.com/book/Snow-Crash.html"
forKey:@"book"];
...
0
votes
0answers
28 views
com.apple.UIKit.activity.PostToFacebook open Beta FBDialogs?
Can is use
[FBSettings enableBetaFeature:FBBetaFeaturesShareDialog];
return [FBDialogs presentShareDialogWithParams:params....
with UIActivityViewController?
0
votes
0answers
54 views
FBDialogs Apple Match-O linker error iOS
I'm trying to implement posting to facebook from an iOS app, I've added the newest facebook sdk, i've added the framework to my xcode project, i've also added the depracated headers folder to my xcode ...
6
votes
1answer
151 views
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:
...
0
votes
0answers
115 views
iOS : How to publish uploaded Facebook photo with FBDialog?
Thanks to http://facebook.stackoverflow.com/questions/12984976/how-to-post-a-photo-ios-facebook-sdk-3-1/12984978#12984978, I succedeed to post an image on the user's photos.
Now I would like to pop ...
1
vote
0answers
132 views
How do I reconcile the FBDialog API with the rest of my app's Facebook integration?
I am confused about the general flow of Facebook and my application. When a user creates an account on our service (I'll call it MyApp) through SSO, we associate their account on MySite with their ...
1
vote
2answers
2k views
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 ...
1
vote
1answer
597 views
dialogDidComplete: FBDialogDelegate method gets called in iOS SDK even if user cancels
iOS SDK: Is it a known issue that when a user cancels a Feed Dialog (or any other platform dialog) the dialogCompleteWithUrl: and dialogDidComplete: FBDelegate methods get called – which obviously is ...
2
votes
0answers
713 views
Add Friend through Facebook Dialog - Android Facebook SDK
I am currently developing an Android app using the Facebook API. One module of my application consists in adding a friend (knowing the ID) and I would like to add a friend through the FB Dialog ...
0
votes
1answer
116 views
Static FBML tab - Dialog() stopped working
Has anyone else experienced this?
var msgdialog = new Dialog();
msgdialog.showMessage('title', 'text');
It is completely ignored - no errors. Seems like this code is even stripped from the static ...
0
votes
0answers
333 views
$_REQUEST[“signed_request”] variable is not there when redirected from Add to Page Dialog
In canvas page of my app, I have a link which when clicked triggers the Add to Page Dialog. After selecting the page from the Dialog it redirects to the same canvas page of the app.
I get ...
0
votes
1answer
506 views
iFrame inside Facebook Dialog Box
I am trying to open a flash gallery with modal box in my iFrame Facebook app, but it is bigger than 520px. I found 2 solutions:
Insert a piece of code in the parent windows to make the modal to open ...
0
votes
2answers
665 views
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. ...
-1
votes
1answer
301 views
Facebook dialog width is hidden
I am having issue with fb.ui method feeds. It seems that 30% of the popup dialog width is hidden by the sponsored/advertisement panel. I know there is a way to specify the width and height for the ...
3
votes
1answer
1k views
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 ...
1
vote
0answers
582 views
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 ...
0
votes
1answer
1k views
API Error Code 102 : javascript dialogs with php
API Error Code: 102
API Error Description: Session key invalid or no longer valid
Error Message: Iframe dialogs must be called with a session key
I get this funny message when calling a fb dialog to ...
1
vote
1answer
2k views
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: {
...
0
votes
2answers
613 views
why fbdidlogin didn't call?
- (id)init {
if (self == [super init]) {
facebook = [[Facebook alloc] initWithAppId:kAppId];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
if ([defaults ...
0
votes
1answer
439 views
Using old style access token with SSO FBDialog?
I've an application, that has old style facebook access_tokens (something like "APPID|xyeahsfa-123465683821.---..." ) and an iOS App using the current facebook SDK (with SSO).
Using
Facebook ...
6
votes
2answers
6k views
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 ...
